Qt 4.8
Classes | Functions
qthread_p.h File Reference
#include "qplatformdefs.h"
#include "QtCore/qthread.h"
#include "QtCore/qmutex.h"
#include "QtCore/qstack.h"
#include "QtCore/qwaitcondition.h"
#include "QtCore/qmap.h"
#include "private/qobject_p.h"

Go to the source code of this file.

Classes

class  QAdoptedThread
 
class  QPostEvent
 
class  QPostEventList
 
class  QScopedLoopLevelCounter
 
class  QThreadData
 
class  QThreadData::FlaggedDebugSignatures
 
class  QThreadPrivate
 

Functions

bool operator< (int priority, const QPostEvent &pe)
 
bool operator< (const QPostEvent &pe, int priority)
 

Function Documentation

◆ operator<() [1/2]

bool operator< ( int  priority,
const QPostEvent pe 
)
inline

Definition at line 87 of file qthread_p.h.

88 {
89  return pe.priority < priority;
90 }
int priority
Definition: qthread_p.h:79

◆ operator<() [2/2]

bool operator< ( const QPostEvent pe,
int  priority 
)
inline

Definition at line 91 of file qthread_p.h.

92 {
93  return priority < pe.priority;
94 }
int priority
Definition: qthread_p.h:79