YarpDataFeedOutputPort.hpp
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
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef __COMMUNICATION_YARPDATAFEEDOUTPUTPORT_h
00031 #define __COMMUNICATION_YARPDATAFEEDOUTPUTPORT_h
00032
00033
00034
00035 #include <yarp/os/all.h>
00036
00037 #include <string>
00038
00039 namespace mermaid
00040 {
00041 namespace support
00042 {
00043 namespace communication
00044 {
00045
00046 using yarp::os::Bottle;
00047 using yarp::os::BufferedPort;
00048
00049
00050
00051
00052
00053
00054 class YarpDataFeedOutputPort : public BufferedPort<Bottle>
00055 {
00056
00057 public:
00058
00059 YarpDataFeedOutputPort (std::string entityName_, std::string serviceName, std::string datafeedName);
00060
00061 std::string getEntityName();
00062 std::string getServiceInstanceName();
00063 std::string getDataFeedName();
00064
00065 private:
00066 std::string entityName_;
00067 std::string serviceName_;
00068 std::string datafeedName_;
00069
00070 };
00071 }
00072 }
00073 }
00074
00075 #endif // __COMMUNICATION_YARPDATAFEEDOUTPUTPORT_h