summaryrefslogtreecommitdiffabout
path: root/kabc/vcardformatimpl.h
authorulf69 <ulf69>2004-09-29 02:41:02 (UTC)
committer ulf69 <ulf69>2004-09-29 02:41:02 (UTC)
commitf7810320ed36a03c96d00436f6b589b9b5ca8c30 (patch) (side-by-side diff)
tree2d47b246b4fef9e7001573405018543e15849b5f /kabc/vcardformatimpl.h
parentcd2cb3a9e2ea93909efc9efa16ddd80c2d2b5408 (diff)
downloadkdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.zip
kdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.tar.gz
kdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.tar.bz2
set env variable KABC_DEBUG to display processewd addresses while loading
Diffstat (limited to 'kabc/vcardformatimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcardformatimpl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/kabc/vcardformatimpl.h b/kabc/vcardformatimpl.h
index fa3d55f..4821047 100644
--- a/kabc/vcardformatimpl.h
+++ b/kabc/vcardformatimpl.h
@@ -40,24 +40,26 @@ namespace KABC {
class AddressBook;
/**
@short Implementation of vCard backend for address book.
This class implements reading and writing of address book information using
the vCard format. It requires the vCard lib from kdepim.
*/
class VCardFormatImpl
{
public:
+ VCardFormatImpl();
+
bool load( Addressee &, QFile *file );
bool loadAll( AddressBook *, Resource *, QFile *file );
void save( const Addressee &, QFile *file );
void saveAll( AddressBook *, Resource *, QFile *file );
bool readFromString( const QString &vcard, Addressee &addr );
bool writeToString( const Addressee &addressee, QString &vcard );
protected:
bool loadAddressee( Addressee &, VCARD::VCard * );
void saveAddressee( const Addressee &, VCARD::VCard *, bool intern );
@@ -97,16 +99,19 @@ class VCardFormatImpl
void addKeyValue( VCARD::VCard *, const Key & );
Key readKeyValue( VCARD::ContentLine * );
void addPictureValue( VCARD::VCard *, VCARD::EntityType, const Picture &, const Addressee &, bool );
Picture readPictureValue( VCARD::ContentLine *, VCARD::EntityType, const Addressee &addr );
void addSoundValue( VCARD::VCard *, const Sound &, const Addressee &, bool );
Sound readSoundValue( VCARD::ContentLine *, const Addressee &addr );
void addAgentValue( VCARD::VCard *, const Agent & );
Agent readAgentValue( VCARD::ContentLine * );
+
+ private:
+ static int debug;
};
}
#endif