blob: b23b54674f70949d3fe53cd27597d72733deb538 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// boost auto_timers_construction.cpp ------------------------------------------------//
// Copyright Beman Dawes 2007, 2011
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt)
// See http://www.boost.org/libs/timer for documentation.
//--------------------------------------------------------------------------------------//
// These constructors are in a separate file so that this translation unit will
// not be linked in except when one of the constructors is actually used. This
// is important since header <iostream> is required, and it incurs the cost of
// the standard stream objects even if they are not used.
//--------------------------------------------------------------------------------------//
// define BOOST_TIMER_SOURCE so that <boost/timer/config.hpp> knows
// the library is being built (possibly exporting rather than importing code)
#define BOOST_TIMER_SOURCE
#include <boost/timer/timer.hpp>
#include <iostream>
namespace
{
// CAUTION: must be identical to same constant in cpu_timer.cpp
const std::string default_fmt(" %ws wall, %us user + %ss system = %ts CPU (%p%)\n");
}
namespace boost
{
namespace timer
{
auto_cpu_timer::auto_cpu_timer(short places) // #1
: m_places(places), m_os(&std::cout), m_format(default_fmt) { start(); }
auto_cpu_timer::auto_cpu_timer(short places, const std::string& format) // #2
: m_places(places), m_os(&std::cout), m_format(format) { start(); }
auto_cpu_timer::auto_cpu_timer(const std::string& format) // #3
: m_places(default_places), m_os(&std::cout), m_format(format) { start(); }
} // namespace timer
} // namespace boost
|