Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mirall/syncresult.h')
-rw-r--r--src/mirall/syncresult.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mirall/syncresult.h b/src/mirall/syncresult.h
new file mode 100644
index 000000000..dc8c2dfcd
--- /dev/null
+++ b/src/mirall/syncresult.h
@@ -0,0 +1,21 @@
+#ifndef MIRALL_SYNCRESULT_H
+#define MIRALL_SYNCRESULT_H
+
+#include <QStringList>
+
+namespace Mirall
+{
+
+class SyncResult
+{
+public:
+ SyncResult();
+ ~SyncResult();
+private:
+ QStringList _deletedSource;
+ QStringList _deletedDestination;
+};
+
+}
+
+#endif