コード例 #1
0
ファイル: AgentManager.cpp プロジェクト: trarck/opensdk
void AgentManager::loadAllPlugins()
{
	unloadAllPlugins();
	
    std::map<std::string,std::string> conf = getPluginConfigure();
    if(!conf.empty()){
        loadPluginsFromConfig(conf);
    }else{
		OPENSDK_WARN("AgentManager", "no config use debug mode");
        setDebugMode(true);
    }
}
コード例 #2
0
ファイル: AgentManager.cpp プロジェクト: RyunosukeOno/rayjack
bool AgentManager::initWithConfigureFile()
{
	std::map<std::string, std::string> conf = getPluginConfigure();
	return init(conf);
}