-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af3be0e
commit 9ee0a5d
Showing
3 changed files
with
30 additions
and
3 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
16 changes: 16 additions & 0 deletions
16
src/omnibot_core/include/state_machine_lib/state_machine_lib.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#ifndef __STATE_MACHINE_LIB_H__ | ||
#define __STATE_MACHINE_LIB_H__ | ||
#include <ros/ros.h> | ||
|
||
class STATE_MACHINE_LIB | ||
{ | ||
private: | ||
ros::NodeHandle *_nh; | ||
public: | ||
STATE_MACHINE_LIB(); | ||
~STATE_MACHINE_LIB(); | ||
}; | ||
|
||
|
||
|
||
#endif // __STATE_MACHINE_LIB_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include "state_machine_lib/state_machine_lib.h" | ||
|
||
STATE_MACHINE_LIB::STATE_MACHINE_LIB(/* args */) | ||
{ | ||
} | ||
|
||
STATE_MACHINE_LIB::~STATE_MACHINE_LIB() | ||
{ | ||
} |