geo.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KABC_GEO_H
00022 #define KABC_GEO_H
00023
00024 #include <qstring.h>
00025
00026 #include <kdelibs_export.h>
00027
00028 namespace KABC {
00029
00035 class KABC_EXPORT Geo
00036 {
00037 friend KABC_EXPORT QDataStream &operator<<( QDataStream &, const Geo & );
00038 friend KABC_EXPORT QDataStream &operator>>( QDataStream &, Geo & );
00039
00040 public:
00044 Geo();
00045
00052 Geo( float latitude, float longitude );
00053
00057 void setLatitude( float );
00058
00062 float latitude() const;
00063
00067 void setLongitude( float );
00068
00072 float longitude() const;
00073
00077 bool isValid() const;
00078
00079 bool operator==( const Geo & ) const;
00080 bool operator!=( const Geo & ) const;
00081
00085 QString asString() const;
00086
00087 private:
00088 float mLatitude;
00089 float mLongitude;
00090
00091 bool mValid;
00092 bool mValidLat;
00093 bool mValidLong;
00094 };
00095
00096 KABC_EXPORT QDataStream &operator<<( QDataStream &, const Geo & );
00097 KABC_EXPORT QDataStream &operator>>( QDataStream &, Geo & );
00098
00099 }
00100
00101 #endif
|