Sarafun Behavior Trees package  1
Behavior trees for the SARAFun project
 All Data Structures Namespaces Functions Variables Enumerations Enumerator
PlaceDummy.cpp
1 #include <sarafun_manipulation/PlaceDummy.h>
2 
3 namespace sarafun {
4 bool TestPlace::parseGoal(const sarafun_manipulation::PlaceGoalConstPtr &goal) {
5  return true;
6 }
7 }
8 
9 int main(int argc, char **argv) {
10  ros::init(argc, argv, "place_action_test");
11  sarafun::TestPlace action(ros::this_node::getName(),
12  "/sarafun/manipulation/place");
13  ros::spin();
14  return -1;
15 }
bool parseGoal(const sarafun_manipulation::PlaceGoalConstPtr &goal)
Definition: PlaceDummy.cpp:4