File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed
rtt_dynamic_reconfigure/include/orocos/rtt_dynamic_reconfigure Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 3737#define RTT_DYNAMIC_RECONFIGURE_SERVER_H
3838
3939#include < rtt/Service.hpp>
40+ #include < rtt/plugin/ServicePlugin.hpp>
4041#include < rtt/TaskContext.hpp>
4142#include < rtt/os/Mutex.hpp>
4243#include < rtt/Logger.hpp>
Original file line number Diff line number Diff line change 11#include < rtt/RTT.hpp>
2+ #include < rtt/plugin/ServicePlugin.hpp>
23#include < rtt/internal/GlobalService.hpp>
34
45#include < rtt_rosclock/rtt_rosclock.h>
@@ -56,15 +57,15 @@ void loadROSClockService(){
5657
5758using namespace RTT ;
5859extern " C" {
59- bool loadRTTPlugin (RTT::TaskContext* c){
60+ RTT_EXPORT bool loadRTTPlugin (RTT::TaskContext* c){
6061 if (c != 0 ) return false ;
6162 loadROSClockService ();
6263 return true ;
6364 }
64- std::string getRTTPluginName (){
65+ RTT_EXPORT std::string getRTTPluginName (){
6566 return " rosclock" ;
6667 }
67- std::string getRTTTargetName (){
68+ RTT_EXPORT std::string getRTTTargetName (){
6869 return OROCOS_TARGET_NAME;
6970 }
7071}
Original file line number Diff line number Diff line change @@ -108,15 +108,15 @@ static void loadROSServiceRegistryService()
108108using namespace RTT ;
109109using namespace rtt_roscomm ;
110110extern " C" {
111- bool loadRTTPlugin (RTT::TaskContext* c){
111+ RTT_EXPORT bool loadRTTPlugin (RTT::TaskContext* c){
112112 if (c != 0 ) return false ;
113113 loadROSServiceRegistryService ();
114114 return true ;
115115 }
116- std::string getRTTPluginName (){
116+ RTT_EXPORT std::string getRTTPluginName (){
117117 return " rosservice_registry" ;
118118 }
119- std::string getRTTTargetName (){
119+ RTT_EXPORT std::string getRTTTargetName (){
120120 return OROCOS_TARGET_NAME;
121121 }
122122}
Original file line number Diff line number Diff line change 11#include < rtt/RTT.hpp>
2+ #include < rtt/plugin/ServicePlugin.hpp>
23#include < rtt/internal/GlobalService.hpp>
34#include < rtt_roscomm/rostopic.h>
45
@@ -49,15 +50,15 @@ void loadROSTopicService(){
4950
5051using namespace RTT ;
5152extern " C" {
52- bool loadRTTPlugin (RTT::TaskContext* c){
53+ RTT_EXPORT bool loadRTTPlugin (RTT::TaskContext* c){
5354 if (c != 0 ) return false ;
5455 loadROSTopicService ();
5556 return true ;
5657 }
57- std::string getRTTPluginName (){
58+ RTT_EXPORT std::string getRTTPluginName (){
5859 return " rostopic" ;
5960 }
60- std::string getRTTTargetName (){
61+ RTT_EXPORT std::string getRTTTargetName (){
6162 return OROCOS_TARGET_NAME;
6263 }
6364}
You can’t perform that action at this time.
0 commit comments