1
2// chrono_io
3//
4// (C) Copyright Howard Hinnant
5// (C) Copyright 2010-2011 Vicente J. Botet Escriba
6// Use, modification and distribution are subject to the Boost Software License,
7// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
8// http://www.boost.org/LICENSE_1_0.txt).
9//
10// This code was adapted by Vicente from Howard Hinnant's experimental work
11// on chrono i/o under lvm/libc++ to Boost
12
13#ifndef BOOST_CHRONO_CHRONO_IO_HPP
14#define BOOST_CHRONO_CHRONO_IO_HPP
15
16#include <boost/chrono/config.hpp>
17
18//#if BOOST_CHRONO_VERSION == 2
19//#include <boost/chrono/io/time_point_io.hpp>
20//#include <boost/chrono/io/duration_io.hpp>
21//#elif BOOST_CHRONO_VERSION == 1
22//#include <boost/chrono/io_v1/chrono_io.hpp>
23//#endif
24
25#if defined BOOST_CHRONO_DONT_PROVIDES_DEPRECATED_IO_SINCE_V2_0_0
26#include <boost/chrono/io/time_point_io.hpp>
27#include <boost/chrono/io/duration_io.hpp>
28#else
29#include <boost/chrono/io_v1/chrono_io.hpp>
30#endif
31
32#include <boost/chrono/io/utility/to_string.hpp>
33
34#endif // BOOST_CHRONO_CHRONO_IO_HPP
35

source code of boost/boost/chrono/chrono_io.hpp