Parent: [0f1b91] (diff)

Child: [b28eaf] (diff)

Download this file

stoplist.h    35 lines (27 with data), 670 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef _STOPLIST_H_INCLUDED_
#define _STOPLIST_H_INCLUDED_
/* @(#$Id: stoplist.h,v 1.1 2007-06-02 08:30:42 dockes Exp $ (C) 2006 J.F.Dockes */
#include <set>
#include <string>
#ifndef NO_NAMESPACES
using std::set;
using std::string;
namespace Rcl
{
#endif
class StopList {
public:
StopList() : m_hasStops(false) {}
StopList(const string &filename) {setFile(filename);}
virtual ~StopList() {}
bool setFile(const string &filename);
bool isStop(const string &term) const;
bool hasStops() const {return m_hasStops;}
private:
bool m_hasStops;
set<string> m_stops;
};
#ifndef NO_NAMESPACES
}
#endif
#endif /* _STOPLIST_H_INCLUDED_ */