#include <opdesc.h>
Public Member Functions | |
OpState (BOOL tick=FALSE, BOOL grey=FALSE, BOOL Remove=FALSE) | |
This is meant to supply default values to the OpState flags so that they don't have random values when they are created. By default they are both set to FALSE so if you want something different you will have to change them. | |
Public Attributes | |
BOOL | Ticked: 1 |
BOOL | Greyed: 1 |
BOOL | RemoveFromMenu: 1 |
Definition at line 286 of file opdesc.h.
|
This is meant to supply default values to the OpState flags so that they don't have random values when they are created. By default they are both set to FALSE so if you want something different you will have to change them.
Definition at line 162 of file opdesc.cpp. 00163 { 00164 Ticked = tick; 00165 Greyed = grey; 00166 RemoveFromMenu = Remove; 00167 }
|
|
|
|
|
|
|