diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-12-06 16:48:15 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-12-06 16:48:15 -0600 |
commit | 3f5dc49edf41359f18e7c94c28a345a9600eb44f (patch) | |
tree | 9377a62fd7701d20da0f08cc391035d8d072e8bf /src/kernel/ntqthread.h | |
parent | 6955a7ebe3c3a0ae2af416fc57ca1f3e9af0ecc3 (diff) | |
download | tqt3-3f5dc49edf41359f18e7c94c28a345a9600eb44f.tar.gz tqt3-3f5dc49edf41359f18e7c94c28a345a9600eb44f.zip |
Automated update from Qt3
Diffstat (limited to 'src/kernel/ntqthread.h')
-rw-r--r-- | src/kernel/ntqthread.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/kernel/ntqthread.h b/src/kernel/ntqthread.h index c3679fbc0..824578c20 100644 --- a/src/kernel/ntqthread.h +++ b/src/kernel/ntqthread.h @@ -118,11 +118,25 @@ protected: private: TQThreadInstance * d; friend class TQThreadInstance; + friend class TQCoreApplicationThread; + friend class TQApplication; + friend class TQEventLoop; #if defined(TQ_DISABLE_COPY) TQThread( const TQThread & ); TQThread &operator=( const TQThread & ); #endif // TQ_DISABLE_COPY + +public: + static TQThread* currentThreadObject(); +}; + +class Q_EXPORT TQEventLoopThread : public TQThread +{ + public: + TQEventLoopThread(); + ~TQEventLoopThread(); + virtual void run(); }; #endif // QT_THREAD_SUPPORT |