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
2018-10-28 21:53:21 +01:00

35 lines
634 B
C++

#ifndef COMMON_FORWARDS_H
#define COMMON_FORWARDS_H
#include <memory>
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 >;
}
}
}
#endif