NOISSUE send custom analytics values

* System, Java and CPU architecture (either 32 or 64).
* Java version.
* System memory size in MB.
* Java min/max heap size in MB.
This commit is contained in:
Petr Mrázek
2016-11-22 02:02:49 +01:00
parent 44805145dc
commit 7a14b63957
3 changed files with 31 additions and 2 deletions

View File

@ -0,0 +1,17 @@
#pragma once
#include <QString>
namespace Sys
{
/**
* Get operation system name and version.
* @return os A QString with the name and version of the operating system.
*/
QString getSystemInfo();
uint64_t getSystemRam();
bool isSystem64bit();
bool isCPU64bit();
}