X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=blobdiff_plain;f=HashTag.h;fp=HashTag.h;h=abcf98b0194644f2986396275e5fc336cae59822;hp=0000000000000000000000000000000000000000;hb=9e05ba27c55c17cb1a2f5345553bad9cb0b1da15;hpb=ee78f2a5fb29ac33b4d41b1d5b4b4a3e1efcf067 diff --git a/HashTag.h b/HashTag.h new file mode 100644 index 0000000..abcf98b --- /dev/null +++ b/HashTag.h @@ -0,0 +1,21 @@ +/** + * © 2008 by David ‘Bombe’ Roden + */ + +#pragma once + +#include "Tag.h" + +class HashTag: public Tag { + +public: + HashTag(const char* hash); + + int getSize(); + void* getValue(); + +private: + char hash[16]; + +}; +