2016-11-20 17:02:27 +05:30
|
|
|
#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-22 05:27:15 +05:30
|
|
|
|
|
|
|
uint64_t getSystemRam();
|
|
|
|
|
|
|
|
bool isSystem64bit();
|
|
|
|
|
|
|
|
bool isCPU64bit();
|
2016-11-20 17:02:27 +05:30
|
|
|
}
|