Introduce version 0.1
[dueringa_WikiWalker.git] / src / Walker.h
blobcddca26e3cb5b4b47e022019a4733adbf000aafc
1 //! \file Walker.h
3 #ifndef _WALKER_H
4 #define _WALKER_H
6 #include "ArticleCollection.h"
8 //! Base class for article analyzers
9 class Walker
11 public:
12 const ArticleCollection& getCollection() const
14 return articleSet;
17 protected:
18 //! article collection, used as cache, for walked articles
19 ArticleCollection articleSet;
22 #endif // _WALKER_H