|  | 
| template<class Callable , class ... Args> | 
|  | Thread (Callable &&callable, Args ...args) | 
|  | Construct a new Thread object.  More... 
 | 
|  | 
| template<class Callable , class ... Args> | 
|  | Thread (const char *name, Callable &&callable, Args ...args) | 
|  | 
|  | Thread (const Thread &)=delete | 
|  | 
|  | Thread (Thread &&t) | 
|  | 
| void | wait () | 
|  | 
| void | join () | 
|  | 
| void | detach () | 
|  | 
| Thread & | operator= (Thread &&th) | 
|  | 
◆ Thread()
template<class Callable , class ... Args> 
  
  | 
        
          | Btk::Thread::Thread | ( | Callable && | callable, |  
          |  |  | Args ... | args |  
          |  | ) |  |  |  | inline | 
 
Construct a new Thread object. 
- Template Parameters
- 
  
    | Callable | The Callable object type |  | Args | The Args type for the objects |  
 
- Parameters
- 
  
    | callable | The thread entry |  | args | The thread args |  
 
 
 
The documentation for this class was generated from the following file: