Linked vector packet

This commit is contained in:
Dan Paulat 2021-12-24 12:08:15 -06:00
parent cb86ab4b9b
commit ab702e9927
6 changed files with 351 additions and 0 deletions

View file

@ -0,0 +1,20 @@
#include <scwx/wsr88d/rpg/packet.hpp>
namespace scwx
{
namespace wsr88d
{
namespace rpg
{
static const std::string logPrefix_ = "[scwx::wsr88d::rpg::packet] ";
Packet::Packet() = default;
Packet::~Packet() = default;
Packet::Packet(Packet&&) noexcept = default;
Packet& Packet::operator=(Packet&&) noexcept = default;
} // namespace rpg
} // namespace wsr88d
} // namespace scwx