#include <stdint.h>
Go to the source code of this file.
Definition at line 73 of file capi_pluginservice.cpp.
75 Registry ® = Registry::instance();
76 std::string
id =
self.id;
const FactoryInfo & getInfo(const std::string &id) const
Retrieve the FactoryInfo object for an id.
In-memory database of the loaded factories.
Definition at line 46 of file capi_pluginservice.cpp.
48 Registry ® = Registry::instance();
49 std::string
id =
self.id;
const FactoryInfo & getInfo(const std::string &id) const
Retrieve the FactoryInfo object for an id.
In-memory database of the loaded factories.
Definition at line 92 of file capi_pluginservice.cpp.
98 Registry ® = Registry::instance();
99 std::string
id = cprop.
id;
102 for (Registry::Properties::const_iterator
108 cprop.
key = itr->first.c_str();
const FactoryInfo & getInfo(const std::string &id) const
Retrieve the FactoryInfo object for an id.
cgaudi_pluginsvc_t registry
In-memory database of the loaded factories.
Definition at line 82 of file capi_pluginservice.cpp.
84 Registry ® = Registry::instance();
85 std::string
id =
self.id;
const FactoryInfo & getInfo(const std::string &id) const
Retrieve the FactoryInfo object for an id.
In-memory database of the loaded factories.
Definition at line 64 of file capi_pluginservice.cpp.
66 Registry ® = Registry::instance();
67 std::string
id =
self.id;
69 return fi.
rtype.c_str();
const FactoryInfo & getInfo(const std::string &id) const
Retrieve the FactoryInfo object for an id.
In-memory database of the loaded factories.
Definition at line 55 of file capi_pluginservice.cpp.
57 Registry ® = Registry::instance();
58 std::string
id =
self.id;
60 return fi.
type.c_str();
const FactoryInfo & getInfo(const std::string &id) const
Retrieve the FactoryInfo object for an id.
In-memory database of the loaded factories.
Definition at line 26 of file capi_pluginservice.cpp.
29 std::vector<Registry::KeyType> keys;
31 for (Registry::FactoryMap::const_iterator
36 keys.push_back(itr->first);
38 const char *key = keys[
n].c_str();
cgaudi_pluginsvc_t registry
const FactoryMap & factories() const
Return the known factories (loading the list if not yet done).
In-memory database of the loaded factories.
Definition at line 18 of file capi_pluginservice.cpp.
21 return int(fmap.size());
In-memory database of the loaded factories.
std::map< KeyType, FactoryInfo > FactoryMap
Type used for the database implementation.
Definition at line 122 of file capi_pluginservice.cpp.
124 Registry ® = Registry::instance();
125 std::string
id =
self.id;
128 Registry::Properties::const_iterator prop = fi.
properties.find(key);
132 return prop->second.c_str();
const FactoryInfo & getInfo(const std::string &id) const
Retrieve the FactoryInfo object for an id.
In-memory database of the loaded factories.