X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=blobdiff_plain;f=StringTag.h;fp=StringTag.h;h=94648344da85225b0043070af38a1a2ca7677b6a;hp=0000000000000000000000000000000000000000;hb=5d07c630077c673b5a7ffaa23fcfb11eefe2136f;hpb=2e311f5feab0d242fc617dc070305185242f7aad diff --git a/StringTag.h b/StringTag.h new file mode 100644 index 0000000..9464834 --- /dev/null +++ b/StringTag.h @@ -0,0 +1,21 @@ +/** + * © 2008 by David Roden + */ + +#pragma once + +#include "Tag.h" + +class StringTag: public Tag { + +public: + StringTag(int id, const char* value); + ~StringTag(); + + void* getValue(); + +private: + char* value; + +}; +