1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 22:17:45 +00:00
sapphire/src/common/Forwards.h

40 lines
703 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#ifndef _COMMON_FORWARDS_H
#define _COMMON_FORWARDS_H
#include <boost/shared_ptr.hpp>
namespace Core
{
class ConfigMgr;
2017-08-08 13:53:47 +02:00
2018-06-10 16:44:41 +00:00
typedef boost::shared_ptr< ConfigMgr > ConfigMgrPtr;
2017-08-08 13:53:47 +02:00
namespace Network
{
class Hive;
class Acceptor;
class Connection;
2018-06-10 16:44:41 +00:00
typedef boost::shared_ptr< Hive > HivePtr;
typedef boost::shared_ptr< Acceptor > AcceptorPtr;
typedef boost::shared_ptr< Connection > ConnectionPtr;
2017-08-08 13:53:47 +02:00
namespace Packets
{
class GamePacket;
2018-06-27 23:48:18 -03:00
class FFXIVPacketBase;
2017-08-08 13:53:47 +02:00
2018-06-10 16:44:41 +00:00
typedef boost::shared_ptr< GamePacket > GamePacketPtr;
2018-06-27 23:48:18 -03:00
typedef boost::shared_ptr< FFXIVPacketBase > FFXIVPacketBasePtr;
2017-08-08 13:53:47 +02:00
}
}
}
#endif