mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
Rules: Added line loops for parser methods, stubs
This commit is contained in:
parent
12adc97d6d
commit
1844baba55
1 changed files with 9 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue