12 lines
207 B
C
12 lines
207 B
C
|
#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();
|
||
|
}
|