std/future.hpp with std::future, std::async and std::future_status.

This commit is contained in:
Alex Zolotarev 2016-01-07 19:31:21 +03:00 committed by Sergey Yershov
parent 5ba841871f
commit ab2e44c370
2 changed files with 16 additions and 0 deletions

View file

@ -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
View 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