first stubs
[ecparse.git] / CollectionReader.h
1 /**
2  * © 2008 by David Roden <droden@gmail.com>
3  */
4
5 #ifndef __ECPARSE_COLLECTIONREADER_H__
6 #define __ECPARSE_COLLECTIONREADER_H__
7
8 #include "ReaderInput.h"
9
10 class CollectionReader {
11
12 public:
13         CollectionReader(ReaderInput* readerInput);
14         ~CollectionReader();
15
16 private:
17         ReaderInput* readerInput;
18
19 };
20
21 #endif