summaryrefslogtreecommitdiffstats
path: root/kabc/vcard/include/generated/generateHeaders.awk
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/vcard/include/generated/generateHeaders.awk')
-rwxr-xr-xkabc/vcard/include/generated/generateHeaders.awk41
1 files changed, 0 insertions, 41 deletions
diff --git a/kabc/vcard/include/generated/generateHeaders.awk b/kabc/vcard/include/generated/generateHeaders.awk
deleted file mode 100755
index 471db11b4..000000000
--- a/kabc/vcard/include/generated/generateHeaders.awk
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/awk -f
-
-{
- outfile = $1 "-generated.h"
- name = $1
-
- OFS=""
-
- print "// XXX Automatically generated. DO NOT EDIT! XXX //\n" > outfile
- print "// WARNING! All changes made in this file will be lost!\n" > outfile
-
- if ($2 == "v") { pre = "virtual " } else { pre = "" }
-
- print "public:" >> outfile
- print name "();" >> outfile
- print name "(const " name "&);" >> outfile
- print name "(const QCString&);" >> outfile
- print pre name " & operator = (" name "&);" >> outfile
- print pre name " & operator = (const QCString&);" >> outfile
- print pre "bool operator ==(" name "&);" >> outfile
- print pre "bool operator !=(" name "& x) {return !(*this==x);}" \
- >> outfile
- print pre "bool operator ==(const QCString& s) {" name " a(s);" \
- "return(*this==a);} " >> outfile
- print pre "bool operator != (const QCString& s) {return !(*this == s);}\n" \
- >> outfile
- print "virtual ~" name "();" >> outfile
- print pre "void parse() " \
- "{if(!parsed_) _parse();parsed_=true;assembled_=false;}\n" \
- >> outfile
- print pre "void assemble() " \
- "{if(assembled_) return;parse();_assemble();assembled_=true;}\n" \
- >> outfile
- print pre "void _parse();" >> outfile
- print pre "void _assemble();" >> outfile
- print pre "const char * className() const { return \"" name "\"; }" \
- >> outfile
-
- print "\n// End of automatically generated code //" >> outfile
-}
-