mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-25 22:45:32 +00:00
ff2465007f
- move AFP stuff into its own namespace - move utf8 and equivset into seperate modules - parser should understand /* */ comments
34 lines
590 B
C++
34 lines
590 B
C++
#ifndef EXPRESSOR_H
|
|
#define EXPRESSOR_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
#include <boost/function.hpp>
|
|
|
|
#include "aftypes.h"
|
|
|
|
namespace afp {
|
|
|
|
struct parser_grammar;
|
|
|
|
struct expressor : boost::noncopyable {
|
|
typedef boost::function<datum (std::vector<datum>)> func_t;
|
|
|
|
expressor();
|
|
~expressor();
|
|
|
|
datum evaluate(std::string const &expr) const;
|
|
|
|
void add_variable(std::string const &name, datum value);
|
|
void add_function(std::string const &name, func_t value);
|
|
|
|
private:
|
|
parser_grammar *grammar_;
|
|
};
|
|
|
|
} // namespace afp
|
|
|
|
#endif /* !EXPRESSOR_H */
|