summaryrefslogtreecommitdiffstats
path: root/tdeabc/vcard/include/VCardDateParam.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-12-19 11:48:03 +0900
committerMichele Calgaro <[email protected]>2020-12-19 17:18:43 +0900
commit083dbd6407c433a7ff2b4880836d919a84b2cea9 (patch)
tree9eec64b07305ca490a57812da1bc3a9ac19bcd13 /tdeabc/vcard/include/VCardDateParam.h
parentefc7c849c6eaad2bd9d9192c8865d2954f0ccbac (diff)
downloadtdelibs-083dbd6407c433a7ff2b4880836d919a84b2cea9.tar.gz
tdelibs-083dbd6407c433a7ff2b4880836d919a84b2cea9.zip
tdeabc/vcard: integrated "generated" partial header files into the place where they
are actually used. Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 5cb3ed2e545a03815cdd04ab8666b605a71c44b4)
Diffstat (limited to 'tdeabc/vcard/include/VCardDateParam.h')
-rw-r--r--tdeabc/vcard/include/VCardDateParam.h23
1 files changed, 19 insertions, 4 deletions
diff --git a/tdeabc/vcard/include/VCardDateParam.h b/tdeabc/vcard/include/VCardDateParam.h
index 410eae6b7..6c6092346 100644
--- a/tdeabc/vcard/include/VCardDateParam.h
+++ b/tdeabc/vcard/include/VCardDateParam.h
@@ -33,10 +33,25 @@ namespace VCARD
class KVCARD_EXPORT DateParam : public Param
{
-
-#include "DateParam-generated.h"
-
- private:
+ public:
+ DateParam();
+ DateParam(const DateParam&);
+ DateParam(const TQCString&);
+ DateParam & operator = (DateParam&);
+ DateParam & operator = (const TQCString&);
+ bool operator ==(DateParam&);
+ bool operator !=(DateParam& x) {return !(*this==x);}
+ bool operator ==(const TQCString& s) {DateParam a(s);return(*this==a);}
+ bool operator != (const TQCString& s) {return !(*this == s);}
+
+ virtual ~DateParam();
+ 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 "DateParam"; }
};
}