2017-08-08 13:53:47 +02:00
|
|
|
#ifndef _COMMON_FORWARDS_H
|
|
|
|
#define _COMMON_FORWARDS_H
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
|
|
namespace Core
|
|
|
|
{
|
|
|
|
|
2018-06-10 16:34:26 +00:00
|
|
|
class ConfigMgr;
|
2017-08-08 13:53:47 +02:00
|
|
|
|
2018-06-10 16:34:26 +00:00
|
|
|
typedef boost::shared_ptr<ConfigMgr> ConfigMgrPtr;
|
2017-08-08 13:53:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
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
|