a C++ library for vCard specification
- 资源大小:14.36 kB
- 上传时间:2021-06-29
- 下载次数:0次
- 浏览次数:1次
- 资源积分:1积分
-
标 签:
资 源 简 介
Introduction
This is a C++ library for all your vCard needs.
For more info please visit: http://www.imc.org/pdi/vcard-21.txt
It depends on Qt Core module (from Qt Framework, visit: http://www.qt-project.org).
Installation
Checkout the source tree:
svn checkout http://libvcard.googlecode.com/svn/trunk/ libvcard-read-only
Follow the instructions in the INSTALL file.
Examples
Create & serialize a vCard
```
#include
// First we create a valid vCard object...
vCard vcard;
vCardProperty name_prop = vCardProperty::createName("Emanuele", "Bertoldi");
vcard.addProperty(name_prop);
// ...and then we can serialize it and send everywhere.
文 件 列 表
libvcard-1.0.2
libvcard
libvcard.pro
AUTHORS
LICENSE
README
include
INSTALL