2007-09-07 23:17:30 +02:00
|
|
|
#include <string>
|
|
|
|
#include "rule.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2007-09-08 00:25:30 +02:00
|
|
|
Rule::Rule (
|
|
|
|
const string& pattern,
|
|
|
|
bool matchCase,
|
|
|
|
const string& replace,
|
|
|
|
const int arrayLength ) : WrapRegex (
|
|
|
|
pattern,
|
|
|
|
matchCase,
|
|
|
|
replace,
|
|
|
|
arrayLength )
|
2007-09-07 23:17:30 +02:00
|
|
|
{ }
|
|
|
|
|
|
|
|
bool Rule::getAdjustCaseAttribute()
|
|
|
|
{
|
2007-09-08 00:25:30 +02:00
|
|
|
return adjustCaseAttribute;
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Rule::getTentativeAttribute()
|
|
|
|
{
|
2007-09-08 00:25:30 +02:00
|
|
|
return tentativeAttribute;
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
string Rule::getReport()
|
|
|
|
{
|
2007-09-08 00:25:30 +02:00
|
|
|
return reportString;
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|
|
|
|
|
2007-09-08 00:25:30 +02:00
|
|
|
void Rule::setAdjustCaseAttribute ( bool b )
|
2007-09-07 23:17:30 +02:00
|
|
|
{
|
2007-09-08 00:25:30 +02:00
|
|
|
adjustCaseAttribute = b;
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|
|
|
|
|
2007-09-08 00:25:30 +02:00
|
|
|
void Rule::setTentativeAttribute ( bool b )
|
2007-09-07 23:17:30 +02:00
|
|
|
{
|
2007-09-08 00:25:30 +02:00
|
|
|
tentativeAttribute = b;
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|
|
|
|
|
2007-09-08 00:25:30 +02:00
|
|
|
void Rule::setReport ( string &s )
|
2007-09-07 23:17:30 +02:00
|
|
|
{
|
2007-09-08 00:25:30 +02:00
|
|
|
reportString = s;
|
2007-09-07 23:17:30 +02:00
|
|
|
}
|