#include <queryparser.h>
Inheritance diagram for Xapian::SimpleStopper:
Public Member Functions | |
SimpleStopper () | |
Default constructor. | |
template<class Iterator> | |
SimpleStopper (Iterator begin, Iterator end) | |
Initialise from a pair of iterators. | |
void | add (const std::string word) |
Add a single stop word. | |
virtual bool | operator() (const std::string &term) const |
Is term a stop-word? | |
virtual | ~SimpleStopper () |
Destructor. | |
virtual std::string | get_description () const |
Return a string describing this object. |
|
Default constructor.
|
|
Initialise from a pair of iterators.
|
|
Destructor.
|
|
Add a single stop word.
|
|
Return a string describing this object.
Reimplemented from Xapian::Stopper. |
|
Is term a stop-word?
Implements Xapian::Stopper. |