add hash tag
[ecparse.git] / HashTag.h
diff --git a/HashTag.h b/HashTag.h
new file mode 100644 (file)
index 0000000..abcf98b
--- /dev/null
+++ b/HashTag.h
@@ -0,0 +1,21 @@
+/**
+ * © 2008 by David ‘Bombe’ Roden <bombe@pterodactylus.net>
+ */
+
+#pragma once
+
+#include "Tag.h"
+
+class HashTag: public Tag {
+
+public:
+       HashTag(const char* hash);
+
+       int getSize();
+       void* getValue();
+
+private:
+       char hash[16];
+
+};
+