1 | /* |
---|---|
2 | Copyright Rene Rivera 2008-2012 |
3 | Copyright Franz Detro 2014 |
4 | Distributed under the Boost Software License, Version 1.0. |
5 | (See accompanying file LICENSE_1_0.txt or copy at |
6 | http://www.boost.org/LICENSE_1_0.txt) |
7 | */ |
8 | |
9 | #ifndef BOOST_PREDEF_OS_H |
10 | #define BOOST_PREDEF_OS_H |
11 | |
12 | #include <boost/predef/os/aix.h> |
13 | #include <boost/predef/os/amigaos.h> |
14 | #include <boost/predef/os/android.h> |
15 | #include <boost/predef/os/beos.h> |
16 | #include <boost/predef/os/bsd.h> |
17 | #include <boost/predef/os/cygwin.h> |
18 | #include <boost/predef/os/haiku.h> |
19 | #include <boost/predef/os/hpux.h> |
20 | #include <boost/predef/os/irix.h> |
21 | #include <boost/predef/os/ios.h> |
22 | #include <boost/predef/os/linux.h> |
23 | #include <boost/predef/os/macos.h> |
24 | #include <boost/predef/os/os400.h> |
25 | #include <boost/predef/os/qnxnto.h> |
26 | #include <boost/predef/os/solaris.h> |
27 | #include <boost/predef/os/unix.h> |
28 | #include <boost/predef/os/vms.h> |
29 | #include <boost/predef/os/windows.h> |
30 | |
31 | #endif |
32 |