Re: [Interest] QtThread

2014-01-13 Thread Chaser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 > Hi I have been reading about QtThread and there seems to be a lot > of discussion about how to correctly use this class. i.e. should > developers derive from QtThread or provide an QObject and move this > object to a thread. The examples provided w

Re: [Interest] Using QSslSocket as QTcpSocket

2011-11-22 Thread Chaser
Oh, thanks! You really helped me! I implement WebSocket's server, so one client may connect on secure mode, and another - on non-secure mode. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Using QSslSocket as QTcpSocket

2011-11-21 Thread Chaser
Hi all! Can a QSslSocket to work as QTcpSocket at unencrypted connenctions? I don't want inherit from QTcpSocket for unencrypted connenctions and from QSslSocket for encrypted connenctions, and have two classes with duplicated code, so is it possible to use QSslSocket for both cases? And what about