00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef LIBLOOKDB_LKFLOAT_H
00019 #define LIBLOOKDB_LKFLOAT_H
00020
00021
00022
00023 #include "looktypes.h"
00024 #include "lktypebase.h"
00025
00026 #include "lkstring.h"
00027
00028 namespace look {
00029
00030
00031
00032
00033
00035
00039 class LOOKTYPES_DLL LookFloat : public LookTypeBase
00040 {
00041 public:
00042
00043 LookFloat( double theValue = 0.0 );
00044
00045
00046 ~LookFloat( void );
00047
00048
00049 LookFloat( const LookFloat &theOther );
00050
00051
00052 LookFloat &operator=( const LookFloat &theOther );
00053
00054
00055 LookTypeBase* GetNewCopy( void ) const;
00056
00057
00058 long GetTypeID( void ) const;
00059
00060
00061 operator double( void ) const;
00062
00063
00064 bool Set( const LookString& theString );
00065 LookString GetString( int aPrecision ) const;
00066 LookString GetStrippedString( int aPrecision ) const;
00067
00068
00069 LookFloat& operator+=( const LookFloat & );
00070 LookFloat& operator-=( const LookFloat & );
00071
00072 LookFloat operator+( const LookFloat & ) const;
00073 LookFloat operator-( const LookFloat & ) const;
00074
00075
00076 long GetRoundedInteger( void ) const;
00077
00078 bool LessEqual( const LookFloat& theOtherFloat, int thePrecision ) const;
00079 bool LessThan( const LookFloat& theOtherFloat, int thePrecision ) const;
00080 bool IsEqual( const LookFloat& theOtherFloat, int thePrecision ) const;
00081 bool IsZero( int thePrecision ) const;
00082
00083 protected:
00085 double itsValue;
00086 };
00087
00088
00089 }
00090 #endif