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:
authorOlivier Goffart <ogoffart@woboq.com>2013-08-14 17:17:58 +0400
committerOlivier Goffart <ogoffart@woboq.com>2013-08-14 17:19:21 +0400
commit0589bfc51b167c5e58c1c163fcdeb6736632c6ff (patch)
tree419e57776edfa51b3d8382fbb0e5e58a79768f3e /src/mirall/syncfileitem.h
parent04f32bd397c172d6c632712915c568b41dfb8ace (diff)
parente89bdfc42271381cbb8dd9cdc1da4819886a6164 (diff)
Merge branch 'master' into propagator-ng
This just fix the conflict. Do not compile or work yet Conflicts: src/CMakeLists.txt src/mirall/csyncthread.cpp src/mirall/csyncthread.h src/mirall/owncloudfolder.cpp src/mirall/syncfileitem.h test/CMakeLists.txt
Diffstat (limited to 'src/mirall/syncfileitem.h')
-rw-r--r--src/mirall/syncfileitem.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/mirall/syncfileitem.h b/src/mirall/syncfileitem.h
index 55489e900..67a59c6cf 100644
--- a/src/mirall/syncfileitem.h
+++ b/src/mirall/syncfileitem.h
@@ -13,9 +13,16 @@ namespace Mirall {
class SyncFileItem {
public:
typedef enum {
- None = 0,
- Up,
- Down } Direction;
+ None = 0,
+ Up,
+ Down } Direction;
+
+ typedef enum {
+ UnknownType,
+ File,
+ Directory,
+ SoftLink
+ } Type;
SyncFileItem() {}
@@ -58,6 +65,7 @@ public:
QString _errorDetail;
int _httpCode;
+ Type _type;
};