| Methods Index |
Subclasses:
CFloatRWC
CFloat class serves as an abstraction for floating point numbers. It is based on the approach taken by Rogue Wave's RWInteger. A minimal lightweight class, CFloat is most useful when used by its collectable subclass CFloatRWC.
|
|
|
|
float
|
itsVal;
| The contained float value |
CFloat(float theVal = 0.0);
theVal.
CFloat(const CFloat &theFloat);
theFloat.
CFloat & operator= (const CFloat &theFloat);
theFloat.
~CFloat();
RWBoolean operator== (const CFloat &theFloat) const;
TRUE if theFloat is equal.
operator float() const;
_this_ to a float value.
float Get(void) const;
float Set(float theVal);