1// (C) Copyright Beman Dawes 2009 2 3// Use, modification and distribution are subject to the 4// Boost Software License, Version 1.0. (See accompanying file 5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 7// See http://www.boost.org/libs/config for more information. 8 9// MACRO: BOOST_NO_CXX11_HDR_CHRONO 10// TITLE: C++0x header <chrono> unavailable 11// DESCRIPTION: The standard library does not supply C++0x header <chrono> 12 13#include <chrono> 14 15namespace boost_no_cxx11_hdr_chrono { 16 17int test() 18{ 19 using std::chrono::nanoseconds; 20 using std::chrono::microseconds; 21 using std::chrono::milliseconds; 22 using std::chrono::seconds; 23 using std::chrono::minutes; 24 using std::chrono::hours; 25 using std::chrono::system_clock; 26 using std::chrono::steady_clock; 27 using std::chrono::high_resolution_clock; 28 return 0; 29} 30 31} 32