summaryrefslogtreecommitdiffstats
path: root/async/src/future.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'async/src/future.cpp')
-rw-r--r--async/src/future.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/async/src/future.cpp b/async/src/future.cpp
index 4b34514..ab02baf 100644
--- a/async/src/future.cpp
+++ b/async/src/future.cpp
@@ -20,12 +20,10 @@
20using namespace Async; 20using namespace Async;
21 21
22FutureBase::FutureBase() 22FutureBase::FutureBase()
23 : mFinished(false)
24{ 23{
25} 24}
26 25
27FutureBase::FutureBase(const Async::FutureBase &other) 26FutureBase::FutureBase(const Async::FutureBase &other)
28 : mFinished(other.mFinished)
29{ 27{
30} 28}
31 29
@@ -33,11 +31,6 @@ FutureBase::~FutureBase()
33{ 31{
34} 32}
35 33
36bool FutureBase::isFinished() const
37{
38 return mFinished;
39}
40
41FutureWatcherBase::FutureWatcherBase(QObject *parent) 34FutureWatcherBase::FutureWatcherBase(QObject *parent)
42 : QObject(parent) 35 : QObject(parent)
43{ 36{