summaryrefslogtreecommitdiffstats
path: root/tdeabc/vcard/include/VCardGeoValue.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-19 11:48:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-19 11:48:03 +0900
commit5cb3ed2e545a03815cdd04ab8666b605a71c44b4 (patch)
tree8c731204e9fdf6a030163992ac88cf210ce8acbe /tdeabc/vcard/include/VCardGeoValue.h
parent6f0a5983467358a325740c689c1fd546c3752b52 (diff)
downloadtdelibs-5cb3ed2e545a03815cdd04ab8666b605a71c44b4.tar.gz
tdelibs-5cb3ed2e545a03815cdd04ab8666b605a71c44b4.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>
Diffstat (limited to 'tdeabc/vcard/include/VCardGeoValue.h')
-rw-r--r--tdeabc/vcard/include/VCardGeoValue.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/tdeabc/vcard/include/VCardGeoValue.h b/tdeabc/vcard/include/VCardGeoValue.h
index 4228587a4..5d5720df5 100644
--- a/tdeabc/vcard/include/VCardGeoValue.h
+++ b/tdeabc/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();