mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
17 lines
229 B
C++
17 lines
229 B
C++
#ifndef SYSINFO_H
|
|
#define SYSINFO_H
|
|
|
|
#include <QQuickItem>
|
|
|
|
class SysInfo : public QQuickItem
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY(SysInfo)
|
|
|
|
public:
|
|
SysInfo(QQuickItem *parent = nullptr);
|
|
~SysInfo();
|
|
};
|
|
|
|
#endif // SYSINFO_H
|