本文整理汇总了C++中PolicyRule::getAbsRuleNumber方法的典型用法代码示例。如果您正苦于以下问题:C++ PolicyRule::getAbsRuleNumber方法的具体用法?C++ PolicyRule::getAbsRuleNumber怎么用?C++ PolicyRule::getAbsRuleNumber使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PolicyRule
的用法示例。
在下文中一共展示了PolicyRule::getAbsRuleNumber方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
bool PolicyCompiler::DetectShadowingForNonTerminatingRules::processNext()
{
PolicyRule *rule;
rule=getNext(); if (rule==NULL) return false;
tmp_queue.push_back(rule); // to pass it to the next processor, if any
if (rule->isFallback()) return true; // do not check fallback ..
if (rule->isHidden()) return true; // ... and hidden rules
std::deque<Rule*>::iterator i =
find_more_general_rule(rule,
true,
rules_seen_so_far.begin(),
rules_seen_so_far.end(),
true); // <<<<<<< NB!
if (i!=rules_seen_so_far.end())
{
Rule *r = *i;
/*
* find_more_general finds more general _or_ equivalent rule
*/
if (r && r->getAbsRuleNumber() != rule->getAbsRuleNumber() &&
! (*r == *rule) )
{
compiler->abort(
rule,
"Non-terminating rule '" + rule->getLabel() +
"' shadows rule '" + r->getLabel() + "' above it");
}
}
rules_seen_so_far.push_back(rule);
return true;
}