summaryrefslogtreecommitdiffabout
path: root/kabc/converter/opie/opieconverter.h
Side-by-side diff
Diffstat (limited to 'kabc/converter/opie/opieconverter.h') (more/less context) (show whitespace changes)
-rw-r--r--kabc/converter/opie/opieconverter.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/kabc/converter/opie/opieconverter.h b/kabc/converter/opie/opieconverter.h
index ef7300b..7d2ad85 100644
--- a/kabc/converter/opie/opieconverter.h
+++ b/kabc/converter/opie/opieconverter.h
@@ -33,6 +33,8 @@ $Id$
#include "addressee.h"
#include <opie/ocontact.h>
+class Categories;
+
namespace KABC {
class OpieConverter
@@ -47,7 +49,10 @@ public:
/**
* Destructor.
*/
- ~OpieConverter();
+ virtual ~OpieConverter();
+
+ virtual bool init();
+ virtual void deinit();
/**
* Converts a vcard string to an addressee.
@@ -65,6 +70,10 @@ public:
*/
bool addresseeToOpie( const Addressee &addr, OContact &contact );
+ private:
+ Categories* catDB;
+
+
};
}