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