From f1f783877f0f8338a225244faff4e40efe10a4ce Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 21 Jul 2018 18:07:45 +0200 Subject: NBT: rework type system --- src/NBT/LongTag.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/NBT/LongTag.hpp') diff --git a/src/NBT/LongTag.hpp b/src/NBT/LongTag.hpp index f600d8e..05f6bc2 100644 --- a/src/NBT/LongTag.hpp +++ b/src/NBT/LongTag.hpp @@ -37,12 +37,15 @@ private: const uint8_t *ptr; public: + static const MakeType Type; + + LongTag(Buffer *buffer) { ptr = buffer->get(8); } - virtual Type getType() const { - return Type::Long; + virtual const TagType & getType() const { + return Type; } virtual void print(std::ostream& os, const std::string &) const { -- cgit v1.2.3