#ifndef NOTMUCH_PARSE_TIME_VRP_H #define NOTMUCH_PARSE_TIME_VRP_H #include /* see *ValueRangeProcessor in xapian-core/include/xapian/queryparser.h */ class ParseTimeValueRangeProcessor : public Xapian::ValueRangeProcessor { protected: Xapian::valueno valno; public: ParseTimeValueRangeProcessor (Xapian::valueno slot_) : valno(slot_) { } Xapian::valueno operator() (std::string &begin, std::string &end); }; #endif /* NOTMUCH_PARSE_TIME_VRP_H */