Rules: Added line loops for parser methods, stubs

This commit is contained in:
Paul Beckingham 2016-03-25 23:55:26 -04:00
parent 12adc97d6d
commit 1844baba55

View file

@ -315,6 +315,9 @@ void Rules::parseRule (const std::string& input)
////////////////////////////////////////////////////////////////////////////////
void Rules::parseRuleGeneral (const std::vector <std::string>& lines)
{
for (auto& line : lines)
{
}
}
////////////////////////////////////////////////////////////////////////////////
@ -325,11 +328,17 @@ void Rules::parseRuleTheme (const std::vector <std::string>& lines)
////////////////////////////////////////////////////////////////////////////////
void Rules::parseRuleExclusions (const std::vector <std::string>& lines)
{
for (auto& line : lines)
{
}
}
////////////////////////////////////////////////////////////////////////////////
void Rules::parseRuleTag (const std::vector <std::string>& lines)
{
for (auto& line : lines)
{
}
}
////////////////////////////////////////////////////////////////////////////////