summaryrefslogtreecommitdiffstats
path: root/kabc/vcard/include/VCardGeoValue.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-19 11:48:03 +0900
committerSlávek Banko <slavek.banko@axis.cz>2021-02-03 22:55:31 +0100
commitaa3ffe33cabdbd6ae9403d992b30b8bee97dfe3f (patch)
tree4f0a210cb889bb6e141ead39a94eb32c180e6087 /kabc/vcard/include/VCardGeoValue.h
parent3fd534c3f9d83029eb113cdbc32f65fe56f3c3d0 (diff)
downloadtdelibs-aa3ffe33cabdbd6ae9403d992b30b8bee97dfe3f.tar.gz
tdelibs-aa3ffe33cabdbd6ae9403d992b30b8bee97dfe3f.zip
tdeabc/vcard: integrated "generated" partial header files into the place where they
are actually used. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 5cb3ed2e545a03815cdd04ab8666b605a71c44b4)
Diffstat (limited to 'kabc/vcard/include/VCardGeoValue.h')
-rw-r--r--kabc/vcard/include/VCardGeoValue.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/kabc/vcard/include/VCardGeoValue.h b/kabc/vcard/include/VCardGeoValue.h
index 4228587a4..5d5720df5 100644
--- a/kabc/vcard/include/VCardGeoValue.h
+++ b/kabc/vcard/include/VCardGeoValue.h
@@ -28,8 +28,25 @@ namespace VCARD
class KVCARD_EXPORT GeoValue : public Value
{
-
-#include "GeoValue-generated.h"
+ public:
+ GeoValue();
+ GeoValue(const GeoValue&);
+ GeoValue(const TQCString&);
+ GeoValue & operator = (GeoValue&);
+ GeoValue & operator = (const TQCString&);
+ bool operator ==(GeoValue&);
+ bool operator !=(GeoValue& x) {return !(*this==x);}
+ bool operator ==(const TQCString& s) {GeoValue a(s);return(*this==a);}
+ bool operator != (const TQCString& s) {return !(*this == s);}
+
+ virtual ~GeoValue();
+ void parse() {if(!parsed_) _parse();parsed_=true;assembled_=false;}
+
+ void assemble() {if(assembled_) return;parse();_assemble();assembled_=true;}
+
+ void _parse();
+ void _assemble();
+ const char * className() const { return "GeoValue"; }
GeoValue *clone();