mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
11 lines
250 B
C++
11 lines
250 B
C++
#include "sysinfo.h"
|
|
|
|
SysInfo::SysInfo(QQuickItem* parent)
|
|
: QQuickItem(parent)
|
|
, m_ram(std::make_unique<RAM>())
|
|
, m_cpu(std::make_unique<CPU>())
|
|
, m_storage(std::make_unique<Storage>())
|
|
, m_uptime(std::make_unique<Uptime>())
|
|
{
|
|
}
|