Inheritance diagram for OFConditionConst:

Public Member Functions | |
| OFConditionConst (unsigned short aModule, unsigned short aCode, OFStatus aStatus, const char *aText) | |
| constructor. | |
| OFConditionConst (const OFConditionConst &arg) | |
| copy constructor | |
| virtual | ~OFConditionConst () |
| destructor | |
| virtual const OFConditionBase * | clone () const |
| this method returns a pointer to a OFConditionBase object containing a clone of this object. | |
| virtual unsigned long | codeAndModule () const |
| returns a combined code and module for this object. | |
| virtual OFStatus | status () const |
| returns the status for this object. | |
| virtual const char * | text () const |
| returns the error message text for this object. | |
| virtual OFBool | deletable () const |
| checks if this object is deletable, e.g. | |
Private Member Functions | |
| OFConditionConst & | operator= (const OFConditionConst &arg) |
| private undefined copy assignment operator | |
Private Attributes | |
| unsigned long | theCodeAndModule |
| code/module identification. Code is lower 16 bits, module is upper 16 bits | |
| OFStatus | theStatus |
| status | |
| const char * | theText |
| condition description | |
OFError instances may keep multiple aliased pointers to an instance of this class. Therefore, instances should be global constants.
Definition at line 150 of file ofcond.h.
|
||||||||||||||||||||
|
constructor.
|
|
|
this method returns a pointer to a OFConditionBase object containing a clone of this object. In this case, deletable() is false and clone just returns a pointer to this.
Implements OFConditionBase. |
|
|
returns a combined code and module for this object. code is lower 16 bits, module is upper 16 bits Implements OFConditionBase. |
|
|
checks if this object is deletable, e.g. all instances of this class are allocated on the heap.
Implements OFConditionBase. |