Skip to content
Snippets Groups Projects
Commit 5bea7007 authored by ilor's avatar ilor
Browse files

rename parameters in parseRule(string) to rule_string

parent 580fb5cc
Branches
No related merge requests found
......@@ -70,21 +70,21 @@ public:
// ---------------------------------------------------------------------------
// Parsing rule sequence from input string
boost::shared_ptr<RuleSequence>
parseRuleSequence(const std::string& operator_string) const;
parseRuleSequence(const std::string& rule_string) const;
boost::shared_ptr<RuleSequence>
parseRuleSequence(std::istream& is) const;
// ---------------------------------------------------------------------------
// Parsing single rule from input string
boost::shared_ptr<TagRule>
parseSingleRule(const std::string& operator_string) const;
parseSingleRule(const std::string& rule_string) const;
boost::shared_ptr<TagRule>
parseSingleRule(std::istream& is) const;
// ---------------------------------------------------------------------------
// Parsing match rule from input string
boost::shared_ptr<Expression>
parseMatchRule(const std::string& operator_string) const;
parseMatchRule(const std::string& rule_string) const;
boost::shared_ptr<Expression>
parseMatchRule(std::istream& is) const;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment