Sha256: f6feee4c41fafd2229fd19a8480451c43d7f78282e58f45bbc3cdf344ea1d1d9
Contents?: true
Size: 800 Bytes
Versions: 40
Compression:
Stored size: 800 Bytes
Contents
// (C) Copyright 2013,2014 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) #ifndef BOOST_THREAD_EXECUTORS_WORK_HPP #define BOOST_THREAD_EXECUTORS_WORK_HPP #include <boost/thread/detail/config.hpp> #include <boost/thread/detail/nullary_function.hpp> #include <boost/thread/csbl/functional.hpp> namespace boost { namespace executors { typedef detail::nullary_function<void()> work; #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES typedef detail::nullary_function<void()> work_pq; //typedef csbl::function<void()> work_pq; #else typedef csbl::function<void()> work_pq; #endif } } // namespace boost #endif // BOOST_THREAD_EXECUTORS_WORK_HPP
Version data entries
40 entries across 40 versions & 2 rubygems