orogen/ctrl_lib
ControllerTransformationProxy.hpp
Go to the documentation of this file.
1/* Generated from orogen/lib/orogen/templates/tasks/Task.hpp */
2
3#ifndef CTRL_LIB_CONTROLLERTRANSFORMATIONPROXY_TASK_HPP
4#define CTRL_LIB_CONTROLLERTRANSFORMATIONPROXY_TASK_HPP
5
6#include "ctrl_lib/ControllerTransformationProxyBase.hpp"
7
8namespace ctrl_lib{
9
11class ControllerTransformationProxy : public ControllerTransformationProxyBase
12{
13 friend class ControllerTransformationProxyBase;
14
15 public:
16 ControllerTransformationProxy(std::string const& name = "ctrl_lib::ControllerTransformationProxy");
17 ControllerTransformationProxy(std::string const& name, RTT::ExecutionEngine* engine);
19
20 bool configureHook();
21 bool startHook(){return ControllerTransformationProxyBase::startHook();}
22 void updateHook();
23 void errorHook(){ControllerTransformationProxyBase::errorHook();}
24 void stopHook(){ControllerTransformationProxyBase::stopHook();}
25 void cleanupHook(){ControllerTransformationProxyBase::cleanupHook();}
26
27 protected:
28 base::samples::RigidBodyState transform;
30
31};
32}
33
34#endif
35
Definition ControllerTransformationProxy.hpp:12
~ControllerTransformationProxy()
Definition ControllerTransformationProxy.cpp:15
bool configureHook()
Definition ControllerTransformationProxy.cpp:18
void stopHook()
Definition ControllerTransformationProxy.hpp:24
base::samples::RigidBodyState transform
Definition ControllerTransformationProxy.hpp:28
void updateHook()
Definition ControllerTransformationProxy.cpp:28
std::string source_frame
Definition ControllerTransformationProxy.hpp:29
ControllerTransformationProxy(std::string const &name="ctrl_lib::ControllerTransformationProxy")
Definition ControllerTransformationProxy.cpp:7
std::string target_frame
Definition ControllerTransformationProxy.hpp:29
bool startHook()
Definition ControllerTransformationProxy.hpp:21
void errorHook()
Definition ControllerTransformationProxy.hpp:23
void cleanupHook()
Definition ControllerTransformationProxy.hpp:25
Definition CartesianForceController.hpp:12