ros_plugin_demo
Demonstration of the ROS PlugInLib
 All Data Structures Namespaces Files Functions Variables Pages
direct.cpp
Go to the documentation of this file.
1 
6 #include <pluginlib/class_list_macros.h>
8 
10 
11 namespace plugin_demo_plugins_namespace
12 {
13  int Direct::onInit(ros::NodeHandle roshandle)
14  {
15  ROS_INFO("[plugin direct] done init.");
16  }
17 
18  int Direct::getPath()
19  {
20  current_path.poses.push_back(start);
21  current_path.poses.push_back(target);
22  ROS_INFO("[plugin direct] here comes the path");
23  }
24 }
Contain the Direct class.
This class create a direct link between the start and target pose.
Definition: direct.hpp:18