X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=blobdiff_plain;f=Tag.cpp;fp=Tag.cpp;h=28c6956e181bbe1fcf4f3598e37783f168589eea;hp=0000000000000000000000000000000000000000;hb=5d07c630077c673b5a7ffaa23fcfb11eefe2136f;hpb=2e311f5feab0d242fc617dc070305185242f7aad diff --git a/Tag.cpp b/Tag.cpp new file mode 100644 index 0000000..28c6956 --- /dev/null +++ b/Tag.cpp @@ -0,0 +1,22 @@ +/** + * © 2008 by David Roden + */ + +#include "Tag.h" + +Tag::Tag(TagType type, int id) { + this->type = type; + this->id = id; +} + +Tag::~Tag() { +} + +TagType Tag::getType() { + return type; +} + +int Tag::getId() { + return id; +} +