You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
921 B
42 lines
921 B
#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;
|
|
}
|