| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <mbgl/util/noncopyable.hpp> |
| 4 | |
| 5 | namespace mbgl { |
| 6 | |
| 7 | class AsyncRequest : private util::noncopyable { |
| 8 | public: |
| 9 | virtual ~AsyncRequest() = default; |
| 10 | }; |
| 11 | |
| 12 | } // namespace mbgl |
| 13 |
| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <mbgl/util/noncopyable.hpp> |
| 4 | |
| 5 | namespace mbgl { |
| 6 | |
| 7 | class AsyncRequest : private util::noncopyable { |
| 8 | public: |
| 9 | virtual ~AsyncRequest() = default; |
| 10 | }; |
| 11 | |
| 12 | } // namespace mbgl |
| 13 |