trick/trick_sims/ROS/models/ros_comm/ros_subscribe.hh
Alex Lin 4c471eb32d Introduce Trick ROS publish/subscribe examples.
Introducing a pubish and subscribe example sim.  The publisher includes
a ROS msg file that is processed by ROS into a header file.

refs #190
2016-02-26 09:39:42 -06:00

23 lines
364 B
C++

/*
PURPOSE: (To be)
LIBRARY_DEPENDENCIES: (ros_subscribe.cpp)
*/
#ifndef ROS_SUBSCRIBE_HH
#define ROS_SUBSCRIBE_HH
#include "ros/ros.h"
class RosSubscribe {
public:
ros::NodeHandle n ; // ** ros nodehandle
ros::Subscriber sub ; // ** ros subscriber
RosSubscribe() ;
int init() ;
int process() ;
} ;
#endif