ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Matcher/Menes/Matcher.cpp
Revision: 114
Committed: 2004-03-16T14:33:08-08:00 (21 years, 3 months ago) by Douglas Thrift
Original Path: Bender/Matcher.cpp
File size: 312 byte(s)
Log Message:
Stuff!

File Contents

# User Rev Content
1 Douglas Thrift 113 // Bender
2     //
3     // Douglas Thrift
4     //
5     // $Id$
6    
7     #include "Matcher.hpp"
8    
9 Douglas Thrift 114 Matcher::~Matcher()
10     {
11     //
12     }
13    
14 Douglas Thrift 113 bool Matcher::match(const string& stuff)
15     {
16     //
17    
18     return false;
19     }
20 Douglas Thrift 114
21     Matcher& Matcher::operator()(const string& expression)
22     {
23     this->expression = pcre_compile(expression.c_str(), 0, NULL, NULL, NULL);
24    
25     return *this;
26     }

Properties

Name Value
svn:eol-style native
svn:keywords Id