#ifndef FUNCTION_REGEXP_H #define FUNCTION_REGEXP_H #include #include "function.h" class FunctionRegexp : public Function { public: FunctionRegexp(); virtual ~FunctionRegexp(); private: }; #endif