| 1 | // boost thread_clock.cpp -----------------------------------------------------------// |
| 2 | |
| 3 | // Copyright 2010 Vicente J. Botet Escriba |
| 4 | |
| 5 | // Distributed under the Boost Software License, Version 1.0. |
| 6 | // See http://www.boost.org/LICENSE_1_0.txt |
| 7 | |
| 8 | // See http://www.boost.org/libs/chrono for documentation. |
| 9 | |
| 10 | //--------------------------------------------------------------------------------------// |
| 11 | |
| 12 | |
| 13 | // define BOOST_CHRONO_SOURCE so that <boost/chrono/config.hpp> knows |
| 14 | // the library is being built (possibly exporting rather than importing code) |
| 15 | |
| 16 | #ifndef BOOST_CHRONO_SOURCE |
| 17 | # define BOOST_CHRONO_SOURCE |
| 18 | #endif |
| 19 | |
| 20 | #include <boost/chrono/detail/inlined/thread_clock.hpp> |
| 21 | |
| 22 | |