#ifndef XSREGEX_H #define XSREGEX_H #include #include using namespace std; template class XSRegEx : public MatchEngine { public: XSRegEx(const string& s); }; template XSRegEx::XSRegEx(const string& s) : MatchEngine(s) { } #endif