nextcloud-desktop/src/mirall/syncresult.h

63 lines
1.4 KiB
C
Raw Normal View History

2011-04-06 13:48:02 +04:00
/*
* Copyright (C) by Duncan Mac-Vicar P. <duncan@kde.org>
*
* 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.
*/
#ifndef MIRALL_SYNCRESULT_H
#define MIRALL_SYNCRESULT_H
#include <QStringList>
#include <QHash>
namespace Mirall
{
class SyncResult
{
public:
enum Status
2011-04-08 13:36:53 +04:00
{
2011-10-13 18:41:24 +04:00
Undefined,
NotYetStarted,
SyncRunning,
2011-10-13 18:41:24 +04:00
Success,
Error,
2011-11-04 14:41:49 +04:00
Disabled,
SetupError
2011-04-08 13:36:53 +04:00
};
2011-10-13 18:41:24 +04:00
SyncResult();
SyncResult( Status status );
~SyncResult();
void setErrorString( const QString& );
2011-09-26 20:19:01 +04:00
QString errorString() const;
void setSyncChanges( const QHash<QString, QStringList> &changes );
QHash<QString, QStringList> syncChanges() const;
2011-04-08 13:36:53 +04:00
Status status() const;
2011-04-08 13:36:53 +04:00
private:
Status _status;
QHash<QString, QStringList> _syncChanges;
2011-04-08 13:36:53 +04:00
/**
* when the sync tool support this...
*/
QStringList _deletedSource;
QStringList _deletedDestination;
2011-09-26 20:19:01 +04:00
QString _errorMsg;
};
}
#endif