#ifndef FUNCTION_REGEXP_H #define FUNCTION_REGEXP_H #include #include "function.h" class FunctionRegexp : public Function { public: FunctionRegexp(); virtual ~FunctionRegexp(); virtual void execute( const StringList &lInput, StringList &lOutput ); private: }; #endif