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

File Contents

# Content
1 // Bender
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #include "Matcher.hpp"
8
9 Matcher::~Matcher()
10 {
11 //
12 }
13
14 bool Matcher::match(const string& stuff)
15 {
16 //
17
18 return false;
19 }
20
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