libkdepim
AddressBookServiceIface.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef ADDRESSBOOKSERVICEIFACE_H
00023 #define ADDRESSBOOKSERVICEIFACE_H
00024
00025 #include <dcopobject.h>
00026 #include <dcopref.h>
00027 #include <kurl.h>
00028 #include <qstring.h>
00029 #include <qcstring.h>
00030 #include <kdepimmacros.h>
00031
00032 namespace KPIM {
00033
00034 #define AddressBookServiceIface KDE_EXPORT AddressBookServiceIface
00035 class AddressBookServiceIface : virtual public DCOPObject
00036 #undef AddressBookServiceIface
00037 {
00038 K_DCOP
00039
00040 k_dcop:
00046 virtual void importVCard( const QString& vCard ) = 0;
00047
00053 virtual void importVCard( const KURL& url ) = 0;
00054 };
00055
00056 }
00057
00058 #endif
00059
|