diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-12-04 10:36:58 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-12-04 10:36:58 +0100 |
commit | 59aa460cf704d5f1a1fb1fe6b8ede4457da083ff (patch) | |
tree | d1cf394099e4897d2b8abf6817191c488c754667 /common/test.cpp | |
parent | 41006b5cab7b0260f8abc42aa2d2e959a013764e (diff) | |
download | sink-59aa460cf704d5f1a1fb1fe6b8ede4457da083ff.tar.gz sink-59aa460cf704d5f1a1fb1fe6b8ede4457da083ff.zip |
Copy command and proper move
Diffstat (limited to 'common/test.cpp')
-rw-r--r-- | common/test.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/test.cpp b/common/test.cpp index 74c499c..0c7ba10 100644 --- a/common/test.cpp +++ b/common/test.cpp | |||
@@ -130,6 +130,11 @@ public: | |||
130 | // mTestAccount->moveEntity<T>(domainObject, newResource); | 130 | // mTestAccount->moveEntity<T>(domainObject, newResource); |
131 | return KAsync::null<void>(); | 131 | return KAsync::null<void>(); |
132 | }; | 132 | }; |
133 | KAsync::Job<void> copy(const T &domainObject, const QByteArray &newResource) Q_DECL_OVERRIDE | ||
134 | { | ||
135 | // mTestAccount->copyEntity<T>(domainObject, newResource); | ||
136 | return KAsync::null<void>(); | ||
137 | }; | ||
133 | KAsync::Job<void> remove(const T &domainObject) Q_DECL_OVERRIDE | 138 | KAsync::Job<void> remove(const T &domainObject) Q_DECL_OVERRIDE |
134 | { | 139 | { |
135 | //FIXME | 140 | //FIXME |