1 // 2 // (C) Copyright 2010-2011 Vicente J. Botet Escriba 3 // Use, modification and distribution are subject to the Boost Software License, 4 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 // http://www.boost.org/LICENSE_1_0.txt). 6 // 7 8 #ifndef BOOST_CHRONO_CLOCK_STRING_HPP 9 #define BOOST_CHRONO_CLOCK_STRING_HPP 10 11 #include <string> 12 13 namespace boost 14 { 15 namespace chrono 16 { 17 18 template<class Clock, class CharT> 19 struct clock_string; 20 21 } // chrono 22 23 } // boost 24 25 #endif // BOOST_CHRONO_CLOCK_STRING_HPP 26