Cell trend volume scan times

This commit is contained in:
Dan Paulat 2022-01-12 00:25:47 -06:00
parent 67a8184ea7
commit 798b348d8b
4 changed files with 203 additions and 0 deletions

View file

@ -0,0 +1,48 @@
#pragma once
#include <scwx/wsr88d/rpg/packet.hpp>
#include <cstdint>
#include <memory>
namespace scwx
{
namespace wsr88d
{
namespace rpg
{
class CellTrendVolumeScanTimesImpl;
class CellTrendVolumeScanTimes : public Packet
{
public:
explicit CellTrendVolumeScanTimes();
~CellTrendVolumeScanTimes();
CellTrendVolumeScanTimes(const CellTrendVolumeScanTimes&) = delete;
CellTrendVolumeScanTimes&
operator=(const CellTrendVolumeScanTimes&) = delete;
CellTrendVolumeScanTimes(CellTrendVolumeScanTimes&&) noexcept;
CellTrendVolumeScanTimes& operator=(CellTrendVolumeScanTimes&&) noexcept;
uint16_t packet_code() const;
uint16_t length_of_block() const;
uint16_t number_of_volumes() const;
uint16_t latest_volume_pointer() const;
uint16_t volume_time(uint16_t v) const;
size_t data_size() const override;
bool Parse(std::istream& is) override;
static std::shared_ptr<CellTrendVolumeScanTimes> Create(std::istream& is);
private:
std::unique_ptr<CellTrendVolumeScanTimesImpl> p;
};
} // namespace rpg
} // namespace wsr88d
} // namespace scwx