2016-11-20 11:32:27 +00:00
|
|
|
#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();
|
2016-11-21 23:57:15 +00:00
|
|
|
|
|
|
|
uint64_t getSystemRam();
|
|
|
|
|
|
|
|
bool isSystem64bit();
|
|
|
|
|
|
|
|
bool isCPU64bit();
|
2016-11-20 11:32:27 +00:00
|
|
|
}
|