forked from organicmaps/organicmaps-tmp
std/future.hpp with std::future, std::async and std::future_status.
This commit is contained in:
parent
5ba841871f
commit
ab2e44c370
2 changed files with 16 additions and 0 deletions
|
@ -247,6 +247,7 @@ HEADERS += \
|
|||
$$ROOT_DIR/std/fstream.hpp \
|
||||
$$ROOT_DIR/std/function.hpp \
|
||||
$$ROOT_DIR/std/functional.hpp \
|
||||
$$ROOT_DIR/std/future.hpp \
|
||||
$$ROOT_DIR/std/initializer_list.hpp \
|
||||
$$ROOT_DIR/std/iomanip.hpp \
|
||||
$$ROOT_DIR/std/ios.hpp \
|
||||
|
|
15
std/future.hpp
Normal file
15
std/future.hpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#ifdef new
|
||||
#undef new
|
||||
#endif
|
||||
|
||||
#include <future>
|
||||
|
||||
using std::async;
|
||||
using std::future_status;
|
||||
using std::launch;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
#endif
|
Loading…
Add table
Reference in a new issue