repo.or.cz
/
dueringa_WikiWalker.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce version 0.1
[dueringa_WikiWalker.git]
/
src
/
Walker.h
blob
cddca26e3cb5b4b47e022019a4733adbf000aafc
1
//! \file Walker.h
2
3
#ifndef _WALKER_H
4
#define _WALKER_H
5
6
#include
"ArticleCollection.h"
7
8
//! Base class for article analyzers
9
class
Walker
10
{
11
public
:
12
const
ArticleCollection
&
getCollection
()
const
13
{
14
return
articleSet
;
15
}
16
17
protected
:
18
//! article collection, used as cache, for walked articles
19
ArticleCollection articleSet
;
20
};
21
22
#endif
// _WALKER_H