RESTinio
os.hpp
Go to the documentation of this file.
1 /*
2  restinio
3 */
4 
9 #pragma once
10 
11 namespace restinio
12 {
13 
14 #if defined( _MSC_VER )
15  #include "impl/os_win.ipp"
16 #elif (defined( __clang__ ) || defined( __GNUC__ )) && !defined(__WIN32__)
17  #include "impl/os_posix.ipp"
18 #else
19  #include "impl/os_unknown.ipp"
20 #endif
21 
22 } /* namespace restinio */
os_posix.ipp
os_win.ipp
os_unknown.ipp
restinio
Definition: asio_include.hpp:21