threadpool.hpp 663 B

12345678910111213141516171819202122232425262728
  1. /*! \file
  2. * \brief Main include.
  3. *
  4. * This is the only file you have to include in order to use the
  5. * complete threadpool library.
  6. *
  7. * Copyright (c) 2005-2007 Philipp Henkel
  8. *
  9. * Use, modification, and distribution are subject to the
  10. * Boost Software License, Version 1.0. (See accompanying file
  11. * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  12. *
  13. * http://threadpool.sourceforge.net
  14. *
  15. */
  16. #ifndef THREADPOOL_HPP_INCLUDED
  17. #define THREADPOOL_HPP_INCLUDED
  18. #include "./threadpool/future.hpp"
  19. #include "./threadpool/pool.hpp"
  20. #include "./threadpool/pool_adaptors.hpp"
  21. #include "./threadpool/task_adaptors.hpp"
  22. #endif // THREADPOOL_HPP_INCLUDED