mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-20 03:37:48 +00:00
38 lines
No EOL
587 B
C++
38 lines
No EOL
587 B
C++
#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 |