Rules: Added ::parseRuleGeneral

This commit is contained in:
Paul Beckingham 2016-03-22 23:49:40 -04:00
parent 21599f3b7d
commit c31578d701
2 changed files with 6 additions and 0 deletions

View file

@ -267,3 +267,8 @@ void Rules::parseRule (const std::string& input)
}
////////////////////////////////////////////////////////////////////////////////
void Rules::parseRuleGeneral (const std::vector <std::string>& lines)
{
}
////////////////////////////////////////////////////////////////////////////////

View file

@ -56,6 +56,7 @@ public:
private:
void parse (const std::string&, int next = 1);
void parseRule (const std::string&);
void parseRuleGeneral (const std::vector <std::string>&);
private:
std::string _original_file {};