~ugocupcic/sr-ros-interface/manipulation

« back to all changes in this revision

Viewing changes to shadow_robot/dataglove/dataglove_processing/include/threadpool/threadpool.hpp

  • Committer: Ugo Cupcic
  • Date: 2011-05-23 15:44:05 UTC
  • mfrom: (119.1.67 sr-ros-interface)
  • Revision ID: ugo@shadowrobot.com-20110523154405-kwvv543sy9wxehzi
Huge merge from trunk. Lots of changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
17
 
#ifndef THREADPOOL_HPP_INCLUDED
18
 
#define THREADPOOL_HPP_INCLUDED
19
 
 
20
 
#include "./threadpool/future.hpp"
21
 
#include "./threadpool/pool.hpp"
22
 
 
23
 
#include "./threadpool/pool_adaptors.hpp"
24
 
#include "./threadpool/task_adaptors.hpp"
25
 
 
26
 
 
27
 
#endif // THREADPOOL_HPP_INCLUDED
28