summaryrefslogtreecommitdiff
path: root/src/mbgl
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2017-03-21 15:03:16 +0100
committerKonstantin Käfer <mail@kkaefer.com>2017-03-28 13:53:19 +0200
commit028360b68f3be900b502c885d23bf1b504e613a1 (patch)
treeb76597d6046edabd2597030247c3037bc4205627 /src/mbgl
parent14bf47c296f7ef80c91366a30b8ec593898e1e9d (diff)
downloadqtlocation-mapboxgl-028360b68f3be900b502c885d23bf1b504e613a1.tar.gz
[node] Move util/async_task.hpp to public include directory
Diffstat (limited to 'src/mbgl')
-rw-r--r--src/mbgl/util/async_task.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/mbgl/util/async_task.hpp b/src/mbgl/util/async_task.hpp
deleted file mode 100644
index 69746c3eb3..0000000000
--- a/src/mbgl/util/async_task.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-
-#include <mbgl/util/noncopyable.hpp>
-
-#include <memory>
-#include <functional>
-
-namespace mbgl {
-namespace util {
-
-class AsyncTask : private util::noncopyable {
-public:
- AsyncTask(std::function<void()>&&);
- ~AsyncTask();
-
- void send();
-
-private:
- class Impl;
- std::unique_ptr<Impl> impl;
-};
-
-} // namespace util
-} // namespace mbgl