Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef MEMORY_STRING_PUBLISHER_HPP
00019 #define MEMORY_STRING_PUBLISHER_HPP
00020
00021
00022
00023
00024 #include "../publisher_base.hpp"
00025
00026
00027
00028
00029 #include <naoqi_bridge_msgs/StringStamped.h>
00030
00031 namespace naoqi
00032 {
00033 namespace publisher
00034 {
00035
00036 class MemoryStringPublisher : public BasePublisher<naoqi_bridge_msgs::StringStamped>
00037 {
00038
00039 public:
00040 MemoryStringPublisher( const std::string& topic );
00041
00042 void publish( const naoqi_bridge_msgs::StringStamped& msg );
00043
00044 void reset( ros::NodeHandle& nh );
00045 };
00046
00047 }
00048 }
00049
00050 #endif