// Bender // // Douglas Thrift // // $Id$ #include "Matcher.hpp" Matcher::~Matcher() { // } bool Matcher::match(const string& stuff) { // return false; } Matcher& Matcher::operator()(const string& expression) { this->expression = pcre_compile(expression.c_str(), 0, NULL, NULL, NULL); return *this; }