blob: 42b76c80f43676b87289503014bf6e72ccb3e8b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include <tdeaboutdata.h>
#include <tdeapplication.h>
#include <kdebug.h>
#include <tdelocale.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;
}
|