#include <ngscan.h>
Inheritance diagram for ApplyPropScan:
Public Member Functions | |
ApplyPropScan (UndoableOperation *pOp, const StringBase &strName, NodeSetProperty *pCopyPropNode=0) | |
Constructs an ApplyPropScan object. | |
Protected Member Functions | |
virtual BOOL | Do (Node *) |
Applies a default property to the given node (ie. the set sentinel). | |
Protected Attributes | |
NodeSetProperty * | m_pCopyPropNode |
Definition at line 315 of file ngscan.h.
|
Constructs an ApplyPropScan object.
Definition at line 946 of file ngscan.cpp. 00948 : ApplySingleScan(pOp, &theSetSentinel, strName), 00949 m_pCopyPropNode(pCopyPropNode) 00950 { 00951 // Empty. 00952 }
|
|
Applies a default property to the given node (ie. the set sentinel).
Reimplemented from ApplySingleScan. Definition at line 966 of file ngscan.cpp. 00967 { 00968 return ApplyPropToNode(m_strName, pNode, m_pCopyPropNode, m_pOp) != 0; 00969 }
|
|
|