1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 08:27:46 +00:00
sapphire/src/servers/Server_Zone/Linkshell/LinkshellMgr.h

26 lines
430 B
C
Raw Normal View History

#ifndef CORE_LINKSHELLMGR_H
#define CORE_LINKSHELLMGR_H
#include <boost/shared_ptr.hpp>
#include <map>
namespace Core
{
class Linkshell;
typedef boost::shared_ptr< Linkshell > LinkshellPtr;
class LinkshellMgr
{
private:
std::map< uint32_t, LinkshellPtr > m_linkshellIdMap;
std::map< std::string, LinkshellPtr > m_linkshellNameMap;
public:
LinkshellMgr();
bool loadLinkshells();
};
}
#endif //CORE_LINKSHELLMGR_H