clock_string.hpp 523 B

12345678910111213141516171819202122232425
  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. #ifndef BOOST_CHRONO_CLOCK_STRING_HPP
  8. #define BOOST_CHRONO_CLOCK_STRING_HPP
  9. #include <string>
  10. namespace boost
  11. {
  12. namespace chrono
  13. {
  14. template<class Clock, class CharT>
  15. struct clock_string;
  16. } // chrono
  17. } // boost
  18. #endif // BOOST_CHRONO_CLOCK_STRING_HPP