orocos_cpp_base
OrocosHelpers.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <vector>
5 
6 namespace RTT
7 {
8  class TaskContext;
9 }
10 
11 
12 
14 {
15 public:
16 
17  /***
18  * Initializes the client task of this process
19  * with the given name. MUST be called prior
20  * to getClientTask().
21  * */
22  static void initClientTask(const std::string &name);
23 
24 
28  static RTT::TaskContext *getClientTask();
29 };
30 
Definition: OrocosHelpers.hpp:13
Definition: OrocosHelpers.hpp:6