Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ add_subdirectory(core)
add_subdirectory(controller)
add_subdirectory(dp)
add_subdirectory(socket)
add_subdirectory(excercise)
add_subdirectory(exercise)
add_subdirectory(ap)

# main application executable does NOT link to this library.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ void driver_test_account() {

class DriverAccount : public IExample {
public:
std::string group() const override { return "excercise"; };
std::string group() const override { return "exercise"; };
std::string name() const override { return "DriverAccount"; }
std::string description() const override { return "Test Account"; }

void execute() override { driver_test_account(); }
};

REGISTER_EXAMPLE(DriverAccount, "excercise", "DriverAccount")
REGISTER_EXAMPLE(DriverAccount, "exercise", "DriverAccount")
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ class DriverStudentManager : public IExample {
void execute() override { driver_test_student_manager(); }
};

REGISTER_EXAMPLE(DriverStudentManager, "excercise", "DriverStudentManager")
REGISTER_EXAMPLE(DriverStudentManager, "exercise", "DriverStudentManager")
File renamed without changes.
File renamed without changes.
Loading