PlatformUtils.h 267 B

123456789101112131415161718
  1. //
  2. // Created by Tobias Hieta on 15/05/15.
  3. //
  4. #ifndef KONVERGO_PLATFORMUTILS_H
  5. #define KONVERGO_PLATFORMUTILS_H
  6. #include <QProcess>
  7. class PlatformUtils
  8. {
  9. public:
  10. PlatformUtils() { }
  11. static bool isProcessAlive(Q_PID pid);
  12. };
  13. #endif //KONVERGO_PLATFORMUTILS_H