mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-07 11:17:46 +00:00
39 lines
No EOL
596 B
C++
39 lines
No EOL
596 B
C++
#ifndef COMMON_FORWARDS_H
|
|
#define COMMON_FORWARDS_H
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
namespace Core {
|
|
|
|
class ConfigMgr;
|
|
|
|
typedef boost::shared_ptr< ConfigMgr > ConfigMgrPtr;
|
|
|
|
|
|
namespace Network {
|
|
class Hive;
|
|
|
|
class Acceptor;
|
|
|
|
class Connection;
|
|
|
|
typedef boost::shared_ptr< Hive > HivePtr;
|
|
typedef boost::shared_ptr< Acceptor > AcceptorPtr;
|
|
typedef boost::shared_ptr< Connection > ConnectionPtr;
|
|
|
|
namespace Packets {
|
|
class GamePacket;
|
|
|
|
class FFXIVPacketBase;
|
|
|
|
typedef boost::shared_ptr< GamePacket > GamePacketPtr;
|
|
typedef boost::shared_ptr< FFXIVPacketBase > FFXIVPacketBasePtr;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif |