|
||||
File indexing completed on 2025-01-18 09:29:48
0001 0002 // chrono_io 0003 // 0004 // (C) Copyright Howard Hinnant 0005 // (C) Copyright 2010-2011 Vicente J. Botet Escriba 0006 // Use, modification and distribution are subject to the Boost Software License, 0007 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 0008 // http://www.boost.org/LICENSE_1_0.txt). 0009 // 0010 // This code was adapted by Vicente from Howard Hinnant's experimental work 0011 // on chrono i/o under lvm/libc++ to Boost 0012 0013 #ifndef BOOST_CHRONO_CHRONO_IO_HPP 0014 #define BOOST_CHRONO_CHRONO_IO_HPP 0015 0016 #include <boost/chrono/config.hpp> 0017 0018 //#if BOOST_CHRONO_VERSION == 2 0019 //#include <boost/chrono/io/time_point_io.hpp> 0020 //#include <boost/chrono/io/duration_io.hpp> 0021 //#elif BOOST_CHRONO_VERSION == 1 0022 //#include <boost/chrono/io_v1/chrono_io.hpp> 0023 //#endif 0024 0025 #if defined BOOST_CHRONO_DONT_PROVIDES_DEPRECATED_IO_SINCE_V2_0_0 0026 #include <boost/chrono/io/time_point_io.hpp> 0027 #include <boost/chrono/io/duration_io.hpp> 0028 #else 0029 #include <boost/chrono/io_v1/chrono_io.hpp> 0030 #endif 0031 0032 #include <boost/chrono/io/utility/to_string.hpp> 0033 0034 #endif // BOOST_CHRONO_CHRONO_IO_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |