ros_plugin_demo
Demonstration of the ROS PlugInLib
 All Data Structures Namespaces Files Functions Variables Pages
direct.hpp
Go to the documentation of this file.
1 
5 #ifndef ROS_PLUGIN_DEMO_DIRECT_H_
6 #define ROS_PLUGIN_DEMO_DIRECT_H_
7 
9 
13 namespace plugin_demo_plugins_namespace
14 {
19  {
23  int getPath();
24 
29  int onInit(ros::NodeHandle roshandle);
30 
31  public:
32  Direct() {}
33  virtual ~Direct(){}
34  };
35 };
36 #endif //ROS_PLUGIN_DEMO_DIRECT_H_
Direct()
Intentionally left empty.
Definition: direct.hpp:32
virtual ~Direct()
Intentionally left empty.
Definition: direct.hpp:33
Contain the Interface class.
int getPath()
"calculate" the path.
Definition: direct.cpp:18
This class create a direct link between the start and target pose.
Definition: direct.hpp:18
int onInit(ros::NodeHandle roshandle)
writes only a info-msg.
Definition: direct.cpp:13