mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-04 09:47:46 +00:00
40 lines
No EOL
701 B
C++
40 lines
No EOL
701 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 |