/* * Copyright (c) 2011, Mika Laitio. , Tom Swindell. * * This program is licensed under the terms and conditions of the * Apache License, version 2.0. The full text of the Apache License is at * http://www.apache.org/licenses/LICENSE-2.0 * */ #ifndef VCARDDIRECTORYIMPORTER_H #define VCARDDIRECTORYIMPORTER_H #include #include #include QTM_USE_NAMESPACE class VCardDirectoryImporterPrivate; class VCardDirectoryImporter : public QObject { Q_OBJECT public: VCardDirectoryImporter(QObject *parent = 0); ~VCardDirectoryImporter(); int importVCardsDirectoryContacts(const QString &path); int saveContacts(); private: QList contactList; }; #endif // VCARDDIRECTORYIMPORTER_H