1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-22 20:57:46 +00:00
sapphire/src/servers/Server_Common/Forwards.h

38 lines
587 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 XMLConfig;
typedef boost::shared_ptr<XMLConfig> XMLConfigPtr;
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;
typedef boost::shared_ptr<GamePacket> GamePacketPtr;
}
}
}
#endif