Programmers Reference - CConSysFloat (1)
class CConSysFloat : public CDataValue
#include "ConSysKernel.h"
class CConSysFloat : public CDataValue
{
public:
CConSysFloat();
CConSysFloat(double aValue);
public:
virtual void IncBit();
// This function increments the least
// significant bit. This function is
// used to take the smalest possible
// step.
virtual void DecBit();
// This function decrements the least
// significant bit. This function is
// used to take the smalest possible
// step.
public:
virtual operator double();
// Type casts the parameter to a double;
virtual void operator =(double aValue);
// This is a default assignment operator;
public:
DECLARE_SERIAL(CConSysFloat);
};
The CConSysFloat is the basic class for handling floating point values in the ConSys sytem.
References:
Last Modified 10 January 2019