1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00
sapphire/src/common/Forwards.h

35 lines
638 B
C++

#ifndef COMMON_FORWARDS_H
#define COMMON_FORWARDS_H
#include <memory>
namespace Sapphire
{
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