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
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef ORO_SERVICEPLUGIN_HPP_
00040 #define ORO_SERVICEPLUGIN_HPP_
00041
00042 #include <string>
00043 #include "../TaskContext.hpp"
00044
00045 namespace RTT {
00046 namespace plugin {
00047
00048 }
00049 }
00050
00051 #define ORO_SERVICEPLUGIN_xstr(s) ORO_SERVICEPLUGIN_str(s)
00052 #define ORO_SERVICEPLUGIN_str(s) #s
00053
00054
00055 #ifdef _MSC_VER
00056 #pragma warning (disable:4190)
00057 #endif
00058
00070 #define ORO_SERVICE_NAMED_PLUGIN( SERVICE, NAME ) \
00071 extern "C" {\
00072 RTT_EXPORT bool loadRTTPlugin(RTT::TaskContext* tc); \
00073 bool loadRTTPlugin(RTT::TaskContext* tc) { \
00074 if (tc == 0) return true; \
00075 RTT::Service::shared_ptr sp( new SERVICE( tc ) ); \
00076 return tc->provides()->addService( sp ); \
00077 } \
00078 RTT_EXPORT RTT::Service::shared_ptr createService(); \
00079 RTT::Service::shared_ptr createService() { \
00080 RTT::Service::shared_ptr sp( new SERVICE( 0 ) ); \
00081 return sp; \
00082 } \
00083 RTT_EXPORT std::string getRTTPluginName(); \
00084 std::string getRTTPluginName() { \
00085 return NAME; \
00086 } \
00087 RTT_EXPORT std::string getRTTTargetName(); \
00088 std::string getRTTTargetName() { \
00089 return OROCOS_TARGET_NAME; \
00090 } \
00091 }
00092
00103 #define ORO_SERVICE_PLUGIN( SERVICE ) \
00104 extern "C" { \
00105 RTT_EXPORT bool loadRTTPlugin(RTT::TaskContext* tc); \
00106 bool loadRTTPlugin(RTT::TaskContext* tc) { \
00107 if (tc == 0) return true; \
00108 RTT::Service::shared_ptr sp( new SERVICE( tc ) ); \
00109 return tc->provides()->addService( sp ); \
00110 } \
00111 RTT_EXPORT RTT::Service::shared_ptr createService(); \
00112 RTT::Service::shared_ptr createService() { \
00113 RTT::Service::shared_ptr sp( new SERVICE( 0 ) ); \
00114 return sp; \
00115 } \
00116 RTT_EXPORT std::string getRTTPluginName(); \
00117 std::string getRTTPluginName() { \
00118 return ORO_SERVICEPLUGIN_xstr(SERVICE); \
00119 } \
00120 RTT_EXPORT std::string getRTTTargetName(); \
00121 std::string getRTTTargetName() { \
00122 return OROCOS_TARGET_NAME; \
00123 } \
00124 }
00125
00126 #endif