orocos_cpp
TypeRegistry.hpp
Go to the documentation of this file.
1 #define once
2 
3 #include <string>
4 #include <map>
5 
6 namespace orocos_cpp
7 {
8 
10 {
11  std::map<std::string, std::string> typeToTypekit;
12 public:
13  TypeRegistry();
14 
15  bool loadTypelist();
16 
17  bool getTypekitDefiningType(const std::string &typeName, std::string &typekitName);
18 };
19 
20 }
Definition: TypeRegistry.hpp:9
bool loadTypelist()
Definition: TypeRegistry.cpp:19
Definition: ConfigurationHelper.hpp:13
TypeRegistry()
Definition: TypeRegistry.cpp:11
bool getTypekitDefiningType(const std::string &typeName, std::string &typekitName)
Definition: TypeRegistry.cpp:98