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