#ifndef __ACCESSMANAGER_H__ #define __ACCESSMANAGER_H__ #include namespace AccessManager { void Load(); //load blacklist & privileged bool IsBlacklisted(const std::string& phone); bool IsPrivileged(const std::string& phone); bool IsPrivPlugin(const std::string& pluginname); void AddPrivPlugin(const std::string& pluginname); } #endif // __ACCESSMANAGER_H__