Threads::atomic< T > Class Template Reference
#include <threads.h>
Public Member Functions | |
| atomic () | |
| operator T & () | |
Private Attributes | |
| T | _val |
Detailed Description
template<typename T>
class Threads::atomic< T >
Defines atomic operations which can only be executed on a single thread at a time. This is used in reference counting, for example, to allow count++/count-- to work.Defines atomic operations which can only be executed on a single thread at a time.
Definition at line 194 of file threads.h.
Constructor & Destructor Documentation
template<typename T >
| Threads::atomic< T >::atomic | ( | ) | [inline] |
Member Function Documentation
template<typename T >
| Threads::atomic< T >::operator T & | ( | ) | [inline] |
Member Data Documentation
template<typename T >
T Threads::atomic< T >::_val [private] |
Definition at line 292 of file threads.h.
Referenced by Threads::atomic< unsigned int >::operator T &().
The documentation for this class was generated from the following file: