Public Member Functions | Public Attributes | List of all members
QWaitConditionEvent Class Reference

Public Member Functions

 QWaitConditionEvent ()
 
 ~QWaitConditionEvent ()
 

Public Attributes

int priority
 
bool wokenUp
 
HANDLE event
 

Detailed Description

Definition at line 51 of file qwaitcondition_win32.cpp.

Constructor & Destructor Documentation

QWaitConditionEvent::QWaitConditionEvent ( )
inline

Definition at line 54 of file qwaitcondition_win32.cpp.

54  : priority(0), wokenUp(false)
55  {
56  event = CreateEvent(NULL, TRUE, FALSE, NULL);
57  }
const bool FALSE
Definition: qglobal.h:370
const bool TRUE
Definition: qglobal.h:371
QWaitConditionEvent::~QWaitConditionEvent ( )
inline

Definition at line 58 of file qwaitcondition_win32.cpp.

58 { CloseHandle(event); }
Event finding and building.

Member Data Documentation

HANDLE QWaitConditionEvent::event

Definition at line 61 of file qwaitcondition_win32.cpp.

int QWaitConditionEvent::priority

Definition at line 59 of file qwaitcondition_win32.cpp.

bool QWaitConditionEvent::wokenUp

Definition at line 60 of file qwaitcondition_win32.cpp.


The documentation for this class was generated from the following file: