add virtual getSize method
[ecparse.git] / BlobTag.h
1 /**
2  * © 2008 by David Roden <droden@gmail.com>
3  */
4
5 #pragma once
6
7 #include "Tag.h"
8
9 class BlobTag: public Tag {
10
11 public:
12         BlobTag(int id, void* value, int length);
13         ~BlobTag();
14
15         int getSize();
16         void* getValue();
17
18 private:
19         int length;
20         void* value;
21
22 };
23