1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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(); }