#include <opdesc.h>
Inheritance diagram for ToolOpDescriptor:
Public Member Functions | |
ToolOpDescriptor (UINT32 toolID, UINT32 txID, CCRuntimeClass *Op, TCHAR *tok=NULL, pfnGetState gs=NULL, UINT32 hlpID=0, UINT32 bubID=0, UINT32 resID=0, UINT32 ctlID=0, BOOL ReceiveMessages=TRUE, BOOL Smart=FALSE, BOOL Clean=FALSE, BOOL fCheckable=FALSE) | |
Construct a new ToolOpDescriptor object and link it into the list of all OpDescriptors. | |
void | SetCurrentTool (BOOL State) |
BOOL | IsCurrentTool () |
Private Attributes | |
BOOL | CurrentTool |
Definition at line 748 of file opdesc.h.
|
Construct a new ToolOpDescriptor object and link it into the list of all OpDescriptors.
Definition at line 1635 of file opdesc.cpp. 01650 : OpDescriptor(toolID, txID, Op, tok, gs, hlpID, bubID, resID, ctlID, ReceiveMessages, 01651 Smart, Clean, fCheckable ) 01652 { 01653 CurrentTool = FALSE; 01654 }
|
|
Definition at line 777 of file opdesc.h. 00777 { return CurrentTool;}
|
|
Definition at line 776 of file opdesc.h. 00776 { CurrentTool = State; }
|
|
|