ADC Home > Reference Library > Reference > Darwin > Kernel Framework Reference
|
OSBoolean.h |
Includes: |
This header contains the class definition of the OSBoolean class, which is the container class for Boolean values.
Container class for Boolean values.
kOSBooleanFalse |
The OSBoolean constant for "false".
extern OSBoolean * const & kOSBooleanFalse;
The OSBoolean constant for "false". The object does not need to be retained or released. Comparisons of the form (booleanObject == kOSBooleanFalse) are acceptable and would be equivalent to (booleanObject->getValue() == false).
kOSBooleanTrue |
The OSBoolean constant for "true".
extern OSBoolean * const & kOSBooleanTrue;
The OSBoolean constant for "true". The object does not need to be retained or released. Comparisons of the form (booleanObject == kOSBooleanTrue) are acceptable and would be equivalent to (booleanObject->getValue() == true).
|
Last Updated: 2008-12-19