bool SharePtrGraphOp::checkExcludeSet(UInt32 fcTypeId)
{
    if(_excludeSet.empty() == true)
        return false;

    if(checkInSet(fcTypeId, _excludeSet) == true)
        return true;

    return false;
}
Example #2
0
bool SharePtrGraphOp::checkExcludeSet(UInt32 fcTypeId)
{
    bool returnValue = false;

    if(_excludeSet.empty(                     ) == false &&
       checkInSet       (fcTypeId, _excludeSet) == true     )
    {
        returnValue = true;
    }

    return returnValue;
}