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/IntTag.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/NBT/IntTag.hpp') diff --git a/src/NBT/IntTag.hpp b/src/NBT/IntTag.hpp index 6514546..e6babd0 100644 --- a/src/NBT/IntTag.hpp +++ b/src/NBT/IntTag.hpp @@ -37,12 +37,15 @@ private: const uint8_t *ptr; public: + static const MakeType Type; + + IntTag(Buffer *buffer) { ptr = buffer->get(4); } - virtual Type getType() const { - return Type::Int; + virtual const TagType & getType() const { + return Type; } virtual void print(std::ostream& os, const std::string &) const { -- cgit v1.2.3