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
571 B
C
Raw Normal View History

#ifndef COMMON_FORWARDS_H
#define COMMON_FORWARDS_H
2017-08-08 13:53:47 +02:00
2018-10-24 12:53:26 +02:00
#include <memory>
2017-08-08 13:53:47 +02:00
namespace Core {
2017-08-08 13:53:47 +02:00
class ConfigMgr;
2017-08-08 13:53:47 +02:00
2018-10-24 12:53:26 +02:00
typedef std::shared_ptr< ConfigMgr > ConfigMgrPtr;
2017-08-08 13:53:47 +02:00
namespace Network {
class Hive;
2017-08-08 13:53:47 +02:00
class Acceptor;
2017-08-08 13:53:47 +02:00
class Connection;
2017-08-08 13:53:47 +02:00
2018-10-24 12:53:26 +02:00
typedef std::shared_ptr< Hive > HivePtr;
typedef std::shared_ptr< Acceptor > AcceptorPtr;
typedef std::shared_ptr< Connection > ConnectionPtr;
2017-08-08 13:53:47 +02:00
namespace Packets {
class GamePacket;
2017-08-08 13:53:47 +02:00
class FFXIVPacketBase;
2018-10-24 12:53:26 +02:00
typedef std::shared_ptr< GamePacket > GamePacketPtr;
typedef std::shared_ptr< FFXIVPacketBase > FFXIVPacketBasePtr;
}
}
2017-08-08 13:53:47 +02:00
}
2018-10-24 12:53:26 +02:00
#endif