increase version number to 0.1
[ecparse.git] / Tag.cpp
1 /**
2  * © 2008 by David Roden <droden@gmail.com>
3  */
4
5 #include "Tag.h"
6
7 Tag::Tag(TagType type, int id) {
8         this->type = type;
9         this->id = id;
10 }
11
12 Tag::~Tag() {
13 }
14
15 TagType Tag::getType() {
16         return type;
17 }
18
19 int Tag::getId() {
20         return id;
21 }
22