Searched refs:PluginBundle (Results 1 – 4 of 4) sorted by relevance
25 class PluginBundle {27 PluginBundle (const std::string& name, const PluginConfig& config, DynamicModule module) in PluginBundle() function29 ~PluginBundle ();30 PluginBundle(const PluginBundle&) = delete;31 PluginBundle& operator= (const PluginBundle&) = delete;32 PluginBundle(PluginBundle&& bundle) = delete;33 PluginBundle& operator=(PluginBundle&& bundle) = delete;
94 const std::map<std::string, std::shared_ptr<PluginBundle>>& GetPluginBundleInfoMap() in GetPluginBundleInfoMap()197 std::map<std::string, std::shared_ptr<PluginBundle>> pluginBundleInfos_;
24 void PluginBundle::ReleaseDynamicModule() in ReleaseDynamicModule()33 PluginBundle::~PluginBundle () in ~PluginBundle()
322 … std::shared_ptr<PluginBundle> bundle = std::make_shared<PluginBundle>(bundleName, config, handle); in LoadPluginBundle()323 …pluginBundleInfos_.insert(std::pair<std::string, std::shared_ptr<PluginBundle>>(bundleName, bundle… in LoadPluginBundle()