Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-updates > by-pkgid > d3c732bcddee997381ae7599db6439ca > files > 448

boost-examples-1.60.0-6.1.mga6.noarch.rpm

//  boost/chrono/stopwatches/stopwatch_reporter_default_formatter.hpp
//  Copyright 2011 Vicente J. Botet Escriba
//  Distributed under the Boost Software License, Version 1.0.
//  (See accompanying file LICENSE_1_0.txt or
//   copy at http://www.boost.org/LICENSE_1_0.txt)
//  See http://www.boost.org/libs/chrono/stopwatches for documentation.

#ifndef BOOST_CHRONO_STOPWATCHES_REPORTERS_DEFAULT_FORMATTER_HPP
#define BOOST_CHRONO_STOPWATCHES_REPORTERS_DEFAULT_FORMATTER_HPP

#include <boost/chrono/stopwatches/reporters/clock_default_formatter.hpp>

namespace boost
{
  namespace chrono
  {

    template <class CharT, class Stopwatch>
    struct basic_stopwatch_reporter_default_formatter
    : basic_clock_default_formatter<CharT, typename Stopwatch::clock>
    {
    };

  } // namespace chrono
} // namespace boost



#endif