Qt | How to use Sleep() on Qt(C++)Qt | Qt(C++)でSleep()させる方法
How to use sleep() in Qt(C++)?
These are two method to use sleep() in Qt(C++).
sleep() by QThread
QThread has a function named by sleep(). It is too simple to use. Just call sleep() where you want.
here is example: [cpp] #include <QThread>
//…. do…
View Post















