-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add move the common files to a lib and reformat using clang-format
- Loading branch information
Showing
10 changed files
with
379 additions
and
397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
Language: Cpp | ||
BasedOnStyle: Google | ||
DerivePointerAlignment: false | ||
PointerAlignment: Left | ||
ColumnLimit: 80 | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
AlignAfterOpenBracket: AlwaysBreak | ||
IncludeCategories: | ||
- Regex: '^<.*' | ||
Priority: 1 | ||
- Regex: '.*' | ||
Priority: 2 | ||
--- | ||
Language: Proto | ||
BasedOnStyle: Google | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,15 @@ | ||
#ifndef VISENSOR_SIMULATOR_BUILTIN_PLANNER_H | ||
#define VISENSOR_SIMULATOR_BUILTIN_PLANNER_H | ||
|
||
#include <string> | ||
#include <nav_msgs/Odometry.h> | ||
#include <string> | ||
|
||
class BuiltInPlanner{ | ||
public: | ||
enum PlannerStatus | ||
{ | ||
INVALID, | ||
STARTING, | ||
RUNNING, | ||
COMPLETED | ||
}; | ||
class BuiltInPlanner { | ||
public: | ||
enum PlannerStatus { INVALID, STARTING, RUNNING, COMPLETED }; | ||
|
||
virtual PlannerStatus getStatus()=0; | ||
virtual bool loadConfigurationFromFile(const std::string& filepath )=0; | ||
virtual PlannerStatus getStatus() = 0; | ||
virtual bool loadConfigurationFromFile(const std::string& filepath) = 0; | ||
}; | ||
|
||
#endif //VISENSOR_SIMULATOR_BUILTIN_PLANNER_H | ||
#endif // VISENSOR_SIMULATOR_BUILTIN_PLANNER_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.