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