add version information
[ecparse.git] / CollectionReader.h
index 2936e25..c01d00b 100644 (file)
@@ -2,10 +2,10 @@
  * © 2008 by David Roden <droden@gmail.com>
  */
 
-#ifndef __ECPARSE_COLLECTIONREADER_H__
-#define __ECPARSE_COLLECTIONREADER_H__
+#pragma once
 
 #include "ReaderInput.h"
+#include "ED2KLink.h"
 
 class CollectionReader {
 
@@ -13,9 +13,10 @@ public:
        CollectionReader(ReaderInput* readerInput);
        ~CollectionReader();
 
+       ED2KLink* getNextLink();
+
 private:
        ReaderInput* readerInput;
 
 };
 
-#endif