CppCMS
system_error.h
1 //
2 // Copyright (C) 2009-2012 Artyom Beilis (Tonkikh)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See
5 // accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 //
8 #ifndef BOOSTER_SYSTEM_ERROR_H
9 #define BOOSTER_SYSTEM_ERROR_H
10 
11 #include <string>
12 #include <booster/backtrace.h>
13 #include <functional>
14 
15 #include <booster/config.h>
16 #include <system_error>
17 namespace booster {
18 
23 namespace system {
24  using std::error_category;
25  using std::system_category;
26  using std::error_code;
27  using std::system_error;
28 
29 } // system
30 } // booster
31 
32 
33 #endif
Booster library namespace. The library that implements Boost Like API in ABI backward compatible way...
Definition: application.h:23