Corelink CPP Client
Corelink C++ client library
 
Loading...
Searching...
No Matches
concurrency_includes.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <thread>
4#include <mutex>
5
6#if defined(CORELINK_CPP14_SUPPORTED) || defined (CORELINK_CPP17_SUPPORTED)
7#include <shared_mutex>
8#endif
9
10#include <condition_variable>
11#include <future>
12
13#if !defined(CORELINK_USE_OTHER_THREAD)
14using corelink_thread = std::thread;
15#endif
std::thread corelink_thread
Definition concurrency_includes.hpp:14