first stubs
[ecparse.git] / CollectionReader.cpp
diff --git a/CollectionReader.cpp b/CollectionReader.cpp
new file mode 100644 (file)
index 0000000..27f9ca6
--- /dev/null
@@ -0,0 +1,14 @@
+/**
+ * © 2008 by David Roden <droden@gmail.com>
+ */
+
+#include "CollectionReader.h"
+
+CollectionReader::CollectionReader(ReaderInput* readerInput) {
+       this->readerInput = readerInput;
+}
+
+CollectionReader::~CollectionReader() {
+       delete readerInput;
+}
+