Base template class for component properties.
Definition at line 1054 of file fbproperties.h.
#include <fbproperties.h>
Public Member Functions |
|
FBPropertyBaseComponent () | |
Constructor. |
|
FBPropertyBaseComponent (const FBPropertyBaseComponent< tType > &pValue) | |
Constructor. |
|
~FBPropertyBaseComponent () | |
Destructor. |
|
tType | operator-> () |
Overloaded -> operator. |
|
operator tType () const | |
Overloaded cast to tType operator.
|
|
void | operator= (tType pValue) |
Overloaded = operator. |
|
Public Attributes |
|
int * | TypeInfo |
< Type information. |
FBPropertyBaseComponent | ( | ) | [inline] |
FBPropertyBaseComponent | ( | const FBPropertyBaseComponent< tType > & | pValue | ) | [inline] |
Constructor.
pValue | Value to set for component. |
Definition at line 1066 of file fbproperties.h.
{ FBPropertyBase< tType,kFBPT_object >::operator=((tType)pValue ); }
~FBPropertyBaseComponent | ( | ) | [inline] |
void operator= | ( | tType | pValue | ) | [inline] |
Overloaded = operator.
pValue | Value to set for component. |
Reimplemented from FBPropertyBase< tType, kFBPT_object >.
Definition at line 1077 of file fbproperties.h.
{ FBPropertyBase< tType,kFBPT_object >::operator=(pValue); }
tType operator-> | ( | ) | [inline] |
Overloaded -> operator.
Definition at line 1083 of file fbproperties.h.
{ return FBPropertyBase< tType,kFBPT_object >::operator tType(); }
operator tType | ( | ) | const [inline] |
Overloaded cast to tType operator.
Reimplemented from FBPropertyBase< tType, kFBPT_object >.
Definition at line 1088 of file fbproperties.h.
{ return FBPropertyBase< tType,kFBPT_object >::operator tType(); }
int* TypeInfo |