123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- #ifndef COMMON_MSGS_MESSAGE_SETLIGHTSTATUS_H
- #define COMMON_MSGS_MESSAGE_SETLIGHTSTATUS_H
- #include <ros/service_traits.h>
- #include <common_msgs/SetLightStatusRequest.h>
- #include <common_msgs/SetLightStatusResponse.h>
- namespace common_msgs
- {
- struct SetLightStatus
- {
- typedef SetLightStatusRequest Request;
- typedef SetLightStatusResponse Response;
- Request request;
- Response response;
- typedef Request RequestType;
- typedef Response ResponseType;
- };
- }
- namespace ros
- {
- namespace service_traits
- {
- template<>
- struct MD5Sum< ::common_msgs::SetLightStatus > {
- static const char* value()
- {
- return "779efcb3ae19cb550a12a228d6a1e704";
- }
- static const char* value(const ::common_msgs::SetLightStatus&) { return value(); }
- };
- template<>
- struct DataType< ::common_msgs::SetLightStatus > {
- static const char* value()
- {
- return "common_msgs/SetLightStatus";
- }
- static const char* value(const ::common_msgs::SetLightStatus&) { return value(); }
- };
- template<>
- struct MD5Sum< ::common_msgs::SetLightStatusRequest>
- {
- static const char* value()
- {
- return MD5Sum< ::common_msgs::SetLightStatus >::value();
- }
- static const char* value(const ::common_msgs::SetLightStatusRequest&)
- {
- return value();
- }
- };
- template<>
- struct DataType< ::common_msgs::SetLightStatusRequest>
- {
- static const char* value()
- {
- return DataType< ::common_msgs::SetLightStatus >::value();
- }
- static const char* value(const ::common_msgs::SetLightStatusRequest&)
- {
- return value();
- }
- };
- template<>
- struct MD5Sum< ::common_msgs::SetLightStatusResponse>
- {
- static const char* value()
- {
- return MD5Sum< ::common_msgs::SetLightStatus >::value();
- }
- static const char* value(const ::common_msgs::SetLightStatusResponse&)
- {
- return value();
- }
- };
- template<>
- struct DataType< ::common_msgs::SetLightStatusResponse>
- {
- static const char* value()
- {
- return DataType< ::common_msgs::SetLightStatus >::value();
- }
- static const char* value(const ::common_msgs::SetLightStatusResponse&)
- {
- return value();
- }
- };
- }
- }
- #endif
|