Qt 4.8
Public Functions | Public Variables | List of all members
QWaitConditionEvent Class Reference

Public Functions

 QWaitConditionEvent ()
 
 ~QWaitConditionEvent ()
 

Public Variables

HANDLE event
 
int priority
 
bool wokenUp
 

Detailed Description

Definition at line 62 of file qwaitcondition_win.cpp.

Constructors and Destructors

◆ QWaitConditionEvent()

QWaitConditionEvent::QWaitConditionEvent ( )
inline

Definition at line 65 of file qwaitcondition_win.cpp.

Referenced by QWaitConditionPrivate::pre().

65  : priority(0), wokenUp(false)
66  {
67  event = CreateEvent(NULL, TRUE, FALSE, NULL);
68  }
#define FALSE
Synonym for false.
Definition: qglobal.h:1019
#define TRUE
Synonym for true.
Definition: qglobal.h:1018

◆ ~QWaitConditionEvent()

QWaitConditionEvent::~QWaitConditionEvent ( )
inline

Definition at line 69 of file qwaitcondition_win.cpp.

69 { CloseHandle(event); }

Properties

◆ event

HANDLE QWaitConditionEvent::event

◆ priority

int QWaitConditionEvent::priority

Definition at line 70 of file qwaitcondition_win.cpp.

Referenced by QWaitConditionPrivate::pre().

◆ wokenUp

bool QWaitConditionEvent::wokenUp

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