All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TaskID.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_UTIL_THREADPOOL_TASKID_H_
23 #define _BLAZE_UTIL_THREADPOOL_TASKID_H_
24 
25 
26 namespace blaze {
27 
28 namespace threadpool {
29 
30 //=================================================================================================
31 //
32 // ::blaze NAMESPACE FORWARD DECLARATIONS
33 //
34 //=================================================================================================
35 
36 class Task;
37 
38 
39 
40 
41 //=================================================================================================
42 //
43 // TYPE DEFINITIONS
44 //
45 //=================================================================================================
46 
47 //*************************************************************************************************
51 typedef Task* TaskID;
52 //*************************************************************************************************
53 
54 
55 //*************************************************************************************************
59 typedef const Task* ConstTaskID;
60 //*************************************************************************************************
61 
62 } // namespace threadpool
63 
64 } // namespace blaze
65 
66 #endif