From 5cb3ed2e545a03815cdd04ab8666b605a71c44b4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 19 Dec 2020 11:48:03 +0900 Subject: tdeabc/vcard: integrated "generated" partial header files into the place where they are actually used. Signed-off-by: Michele Calgaro --- tdeabc/vcard/include/VCardGroup.h | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'tdeabc/vcard/include/VCardGroup.h') diff --git a/tdeabc/vcard/include/VCardGroup.h b/tdeabc/vcard/include/VCardGroup.h index ce884f100..878e6ab78 100644 --- a/tdeabc/vcard/include/VCardGroup.h +++ b/tdeabc/vcard/include/VCardGroup.h @@ -31,7 +31,25 @@ namespace VCARD class KVCARD_EXPORT Group : public Entity { -#include "Group-generated.h" + public: + Group(); + Group(const Group&); + Group(const TQCString&); + Group & operator = (Group&); + Group & operator = (const TQCString&); + bool operator ==(Group&); + bool operator !=(Group& x) {return !(*this==x);} + bool operator ==(const TQCString& s) {Group a(s);return(*this==a);} + bool operator != (const TQCString& s) {return !(*this == s);} + + virtual ~Group(); + 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 "Group"; } }; } -- cgit v1.2.1