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