X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=blobdiff_plain;f=Tag.h;fp=Tag.h;h=926c58a09d55ae093ad8b2aea5174633d38218ec;hp=0000000000000000000000000000000000000000;hb=5d07c630077c673b5a7ffaa23fcfb11eefe2136f;hpb=2e311f5feab0d242fc617dc070305185242f7aad diff --git a/Tag.h b/Tag.h new file mode 100644 index 0000000..926c58a --- /dev/null +++ b/Tag.h @@ -0,0 +1,25 @@ +/** + * © 2008 by David Roden + */ + +#pragma once + +#include "TagType.h" + +class Tag { + +protected: + Tag(TagType type, int id); + virtual ~Tag(); + +public: + TagType getType(); + int getId(); + virtual void* getValue() = 0; + +private: + TagType type; + int id; + +}; +