add definition of verbose
[ecparse.git] / CollectionReader.cpp
1 /**
2  * © 2008 by David Roden <droden@gmail.com>
3  */
4
5 #include "CollectionReader.h"
6
7 CollectionReader::CollectionReader(ReaderInput* readerInput) {
8         this->readerInput = readerInput;
9 }
10
11 CollectionReader::~CollectionReader() {
12         delete readerInput;
13 }
14