blob: ef37cbde7372c75c28d79c275e1a10a98c927cbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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();
}
|