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

36 lines
634 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
2018-10-28 21:53:21 +01:00
namespace Core
{
class ConfigMgr;
using ConfigMgrPtr = std::shared_ptr< ConfigMgr >;
namespace Network
{
class Hive;
class Acceptor;
class Connection;
using HivePtr = std::shared_ptr< Hive >;
using AcceptorPtr = std::shared_ptr< Acceptor >;
using ConnectionPtr = std::shared_ptr< Connection >;
namespace Packets
{
class GamePacket;
class FFXIVPacketBase;
using GamePacketPtr = std::shared_ptr< GamePacket >;
using FFXIVPacketBasePtr = std::shared_ptr< FFXIVPacketBase >;
}
}
2017-08-08 13:53:47 +02:00
}
2018-10-24 12:53:26 +02:00
#endif