/* * Copyright Andrey Semashev 2012. * 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) */ #if (defined(_MSC_VER) && _MSC_VER > 1000) #pragma once #endif // _MSC_VER > 1000 #ifndef BOOST_THREAD_DETAIL_THREAD_TIME_TRAITS_HPP_INCLUDED_ #define BOOST_THREAD_DETAIL_THREAD_TIME_TRAITS_HPP_INCLUDED_ // TODO: Do a header dispatch based on the current platform #include namespace boost { namespace detail { struct time_point_tag {}; struct time_duration_tag {}; template< typename T, typename = void > struct thread_time_traits; } } #endif // BOOST_THREAD_DETAIL_THREAD_TIME_TRAITS_HPP_INCLUDED_