platformthread.cpp 302 B

12345678910111213141516171819202122
  1. #include "platformthread.h"
  2. #include "webservercontrol.h"
  3. PlatformThread::PlatformThread(QObject *parent)
  4. : QThread(parent)
  5. {
  6. }
  7. PlatformThread::~PlatformThread()
  8. {
  9. }
  10. void PlatformThread::run()
  11. {
  12. while (true)
  13. {
  14. WebServerControl::GetInstance()->CalculateDeviationPercentage();
  15. msleep(1);
  16. }
  17. }