diff --git a/core/exportresourcearchivejob.h b/core/exportresourcearchivejob.h index ee98701..d1a17da 100644 --- a/core/exportresourcearchivejob.h +++ b/core/exportresourcearchivejob.h @@ -1,64 +1,64 @@ /* Copyright (C) 2015-2017 Montel Laurent This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifndef EXPORTADDRESSBOOKRESOURCEJOB_H -#define EXPORTADDRESSBOOKRESOURCEJOB_H +#ifndef EXPORTRESOURCEARCHIVEJOB_H +#define EXPORTRESOURCEARCHIVEJOB_H #include class KZip; class PimSettingBackupThread; class ExportResourceArchiveJob : public QObject { Q_OBJECT public: explicit ExportResourceArchiveJob(QObject *parent = nullptr); ~ExportResourceArchiveJob(); void setArchivePath(const QString &archivePath); void setUrl(const QString &url); void setIdentifier(const QString &identifier); void setArchive(KZip *zip); void start(); void setArchiveName(const QString &archiveName); Q_SIGNALS: void error(const QString &str); void info(const QString &str); void terminated(); private Q_SLOTS: void slotTerminated(bool success); public Q_SLOTS: void slotTaskCanceled(); private: void finished(); QString mArchiveName; QString mUrl; QString mArchivePath; QString mIdentifier; KZip *mZip; PimSettingBackupThread *mThread; }; -#endif // EXPORTADDRESSBOOKRESOURCEJOB_H +#endif // EXPORTRESOURCEARCHIVEJOB_H