Sarafun Behavior Trees package  1
Behavior trees for the SARAFun project
 All Data Structures Namespaces Functions Variables Enumerations Enumerator
MoveDummy.h
1 #ifndef __MOVE_DUMMY__
2 #define __MOVE_DUMMY__
3 
4 #include <ros/ros.h>
5 #include <sarafun_msgs/MoveKeyframeAction.h>
6 #include <sarafun_generic_al_server/sarafun_test_server.h>
7 
8 namespace sarafun {
9 class TestMove : TestServer<sarafun_msgs::MoveKeyframeAction,
10  sarafun_msgs::MoveKeyframeGoalConstPtr,
11  sarafun_msgs::MoveKeyframeFeedback,
12  sarafun_msgs::MoveKeyframeResult> {
13 public:
14  TestMove(std::string node_name, std::string actionlib_name)
15  : TestServer<
16  sarafun_msgs::MoveKeyframeAction,
17  sarafun_msgs::MoveKeyframeGoalConstPtr,
18  sarafun_msgs::MoveKeyframeFeedback,
19  sarafun_msgs::MoveKeyframeResult>::TestServer(node_name,
20  actionlib_name) {}
21 
22  ~TestMove() {}
23 
24 protected:
25  bool parseGoal(const sarafun_msgs::MoveKeyframeGoalConstPtr &goal);
26 };
27 }
28 #endif
TestMove(std::string node_name, std::string actionlib_name)
Definition: MoveDummy.h:14
bool parseGoal(const sarafun_msgs::MoveKeyframeGoalConstPtr &goal)
Definition: MoveDummy.cpp:4