#include <objchge.h>
Inheritance diagram for ObjChangeParamWithToken:
Public Member Functions | |
ObjChangeParamWithToken (ObjChangeType cType, ObjChangeFlags cFlags, Node *cNode, UndoableOperation *cOp, String *pToken) | |
Constructor for the ObjChangeParamWithToken class. This is almost idential to ObjChangeParam, except that it always has an OpToken of the operation that will be applied. The pointer to the operation may still be NULL. This gives you a way of seeing what the operation will be before it starts. Most usefully in an operations GetState. | |
~ObjChangeParamWithToken () | |
Destructor for the ObjChangeParamWithToken class. | |
String * | GetOpToken () |
Protected Attributes | |
String | OperationToken |
Definition at line 322 of file objchge.h.
|
Constructor for the ObjChangeParamWithToken class. This is almost idential to ObjChangeParam, except that it always has an OpToken of the operation that will be applied. The pointer to the operation may still be NULL. This gives you a way of seeing what the operation will be before it starts. Most usefully in an operations GetState.
Definition at line 586 of file objchge.cpp. 00591 : ObjChangeParam( cType, 00592 cFlags, 00593 cNode, 00594 cOp) 00595 { 00596 OperationToken = *pToken; 00597 }
|
|
Destructor for the ObjChangeParamWithToken class.
Definition at line 611 of file objchge.cpp.
|
|
Definition at line 330 of file objchge.h. 00330 {return &OperationToken;};
|
|
|