mediawiki-extensions-AbuseF.../parser_native/request.h
River Tarnell ff2465007f - remove unused isInVector
- move AFP stuff into its own namespace
- move utf8 and equivset into seperate modules
- parser should understand /* */ comments
2008-08-08 03:23:34 +00:00

23 lines
290 B
C++

#ifndef REQUEST_H
#define REQUEST_H
#include <string>
#include <istream>
#include "filter_evaluator.h"
namespace afp {
struct request {
bool load(std::istream &);
bool evaluate(void);
private:
filter_evaluator f;
std::string filter;
};
} // namespace afp
#endif /* !REQUEST_H */