Added std headers for condition and mutex

This commit is contained in:
Alex Zolotarev 2014-10-17 16:19:18 -07:00
parent 0ddcff0b07
commit 0adf799b3e
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#pragma once
#include "common_defines.hpp"
#ifdef new
#undef new
#endif
#include <condition_variable>
using std::condition_variable;
#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif

14
std/mutex.hpp Normal file
View file

@ -0,0 +1,14 @@
#pragma once
#include "common_defines.hpp"
#ifdef new
#undef new
#endif
#include <mutex>
using std::mutex;
#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif