#include <rtt/Service.hpp>
#include <rtt/TaskContext.hpp>
#include <rtt/os/Mutex.hpp>
#include <rtt/Logger.hpp>
#include <rtt/Operation.hpp>
#include <rtt/OperationCaller.hpp>
#include <rtt/internal/DataSources.hpp>
#include <rtt/internal/GlobalEngine.hpp>
#include <ros/ros.h>
#include <dynamic_reconfigure/Reconfigure.h>
#include <dynamic_reconfigure/Config.h>
#include <dynamic_reconfigure/ConfigDescription.h>
#include <rtt/rtt-config.h>
Go to the source code of this file.
#define RTT_DYNAMIC_RECONFIGURE_SERVICE_PLUGIN |
( |
|
CONFIG, |
|
|
|
NAME |
|
) |
| |
Value:extern "C" {\
if (tc == 0) return true; \
return tc->provides()->addService( sp ); \
} \
RTT_EXPORT
RTT::Service::shared_ptr createService(); \
RTT::Service::shared_ptr createService() {
\ return sp; \
} \
return NAME; \
} \
return OROCOS_TARGET_NAME; \
} \
}
boost::shared_ptr< Service > shared_ptr
RTT_EXPORT std::string getRTTTargetName()
std::string getRTTPluginName()
bool loadRTTPlugin(RTT::TaskContext *t)
Definition at line 737 of file server.h.
#define RTT_VERSION_GTE |
( |
|
major, |
|
|
|
minor, |
|
|
|
patch |
|
) |
| |
Value:((RTT_VERSION_MAJOR > major) || (RTT_VERSION_MAJOR == major && \
(RTT_VERSION_MINOR > minor) || (RTT_VERSION_MINOR == minor && \
(RTT_VERSION_PATCH >= patch))))
Definition at line 57 of file server.h.