#include <ngscan.h>
Inheritance diagram for AllowOpScan::IsLitUsedName:
Public Member Functions | |
IsLitUsedName (Node *pNode) | |
Tests if the given Node is a member of a set within the Attribute gallery. | |
Protected Member Functions | |
virtual BOOL | Do (SGNameItem *) |
Tests if the Node passed to the constructor is a member of the given set item. |
Definition at line 240 of file ngscan.h.
|
Tests if the given Node is a member of a set within the Attribute gallery.
Definition at line 574 of file ngscan.cpp. 00575 : NameIterOp(pNode) 00576 { 00577 // Empty. 00578 }
|
|
Tests if the Node passed to the constructor is a member of the given set item.
Implements NameItemIter. Definition at line 593 of file ngscan.cpp. 00594 { 00595 // Quit as soon as we find a set item the object is a member of. ForEach will return 00596 // the address of the first set item the object is within. 00597 return !pItem->IsMember(m_pNode); 00598 }
|