summaryrefslogtreecommitdiffstats
path: root/kabc/vcard/testwrite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/vcard/testwrite.cpp')
-rw-r--r--kabc/vcard/testwrite.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/kabc/vcard/testwrite.cpp b/kabc/vcard/testwrite.cpp
deleted file mode 100644
index 67f8eb20a..000000000
--- a/kabc/vcard/testwrite.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-#include <tdeaboutdata.h>
-#include <tdeapplication.h>
-#include <kdebug.h>
-#include <klocale.h>
-#include <tdecmdlineargs.h>
-
-#include <VCard.h>
-
-int main(int argc,char **argv)
-{
- TDEAboutData aboutData("testwrite",I18N_NOOP("TestWritevCard"),"0.1");
- TDECmdLineArgs::init(argc,argv,&aboutData);
-
- TDEApplication app;
-
- kdDebug() << "Test Write VCard" << endl;
-
- using namespace VCARD;
-
- VCard v;
-
- ContentLine cl1;
- cl1.setName(EntityTypeToParamName(EntityName));
- cl1.setValue(new TextValue("Hans Wurst"));
- v.add(cl1);
-
- ContentLine cl2;
- cl2.setName(EntityTypeToParamName(EntityTelephone));
- cl2.setValue(new TelValue("12345"));
- ParamList p;
- p.append( new TelParam("home") );
- p.append( new TelParam("fax") );
- cl2.setParamList( p );
- v.add(cl2);
-
- TQCString str = v.asString();
-
- kdDebug() << "--- VCard begin ---" << endl
- << str
- << "--- VCard end ---" << endl;
-}