Project revived from Feb2017
[EroSomnia.git] / deps / boost_1_63_0 / boost / date_time / posix_time / posix_time_system.hpp
blob84c21ca00f8e2e7050cf8561c4dfd74c408bb350
1 #ifndef POSIX_TIME_SYSTEM_HPP___
2 #define POSIX_TIME_SYSTEM_HPP___
4 /* Copyright (c) 2002,2003 CrystalClear Software, Inc.
5 * Use, modification and distribution is subject to the
6 * Boost Software License, Version 1.0. (See accompanying
7 * file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
8 * Author: Jeff Garland
9 * $Date$
13 #include "boost/date_time/posix_time/posix_time_config.hpp"
14 #include "boost/date_time/time_system_split.hpp"
15 #include "boost/date_time/time_system_counted.hpp"
16 #include "boost/date_time/compiler_config.hpp"
19 namespace boost {
20 namespace posix_time {
22 #ifdef BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG
24 #if (defined(BOOST_DATE_TIME_NO_MEMBER_INIT)) //help bad compilers
25 typedef date_time::split_timedate_system<posix_time_system_config, 1000000000> posix_time_system;
26 #else
27 typedef date_time::split_timedate_system<posix_time_system_config> posix_time_system;
28 #endif
30 #else
32 typedef date_time::counted_time_rep<millisec_posix_time_system_config> int64_time_rep;
33 typedef date_time::counted_time_system<int64_time_rep> posix_time_system;
35 #endif
37 } }//namespace posix_time
40 #endif