1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-28 15:17:46 +00:00
sapphire/src/common/Forwards.h

37 lines
720 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 Sapphire
{
class Framework;
using FrameworkPtr = std::shared_ptr< Framework >;
}
namespace Sapphire::Common
2018-10-28 21:53:21 +01:00
{
class ConfigMgr;
using ConfigMgrPtr = std::shared_ptr< ConfigMgr >;
}
2018-10-28 21:53:21 +01:00
namespace Sapphire::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 >;
2017-08-08 13:53:47 +02:00
}
namespace Sapphire::Network::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