Property class: char * (String).
Definition at line 1127 of file fbproperties.h.
#include <fbproperties.h>

Public Member Functions |
|
| operator const char * () const | |
| Overloaded cast to tType operator.
|
|
| bool | operator== (const char *pValue) const |
| bool | operator!= (const char *pValue) const |
| void | operator= (const char *pValue) |
| Overloaded = operator. |
|
| void operator= | ( | const char * | pValue | ) | [inline] |
Overloaded = operator.
Set the value of the current object using the Set function.
| pValue | Value to set for object. |
Definition at line 1136 of file fbproperties.h.
{ SetData( &pValue ); }
| operator const char * | ( | ) | const [inline] |
Overloaded cast to tType operator.
Get the value of the current object using Get fuction.
Definition at line 1143 of file fbproperties.h.
{ char* Value; GetData( &Value,sizeof(Value) ); return Value; }
| bool operator== | ( | const char * | pValue | ) | const [inline] |
Definition at line 1145 of file fbproperties.h.
{ char* Value; GetData( &Value,sizeof(Value) ); return (Value == pValue) || (strcmp(Value, pValue) == 0); }
| bool operator!= | ( | const char * | pValue | ) | const [inline] |
Definition at line 1146 of file fbproperties.h.
{ return ! operator==(pValue); }