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:
17
libraries/ganalytics/include/sys.h
Normal file
17
libraries/ganalytics/include/sys.h
Normal 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();
|
||||
}
|
Reference in New Issue
Block a user