1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 08:22:33 +02:00
ScreenPlay/ScreenPlaySysInfo/sysinfo.cpp

28 lines
504 B
C++
Raw Normal View History

2018-09-19 13:19:51 +02:00
#include "sysinfo.h"
/*!
\module ScreenPlaySysInfo
\title ScreenPlaySysInfo
\brief Module for ScreenPlaySysInfo.
*/
/*!
\class SysInfo
\inmodule ScreenPlaySysInfo
\brief .
*/
2021-05-13 13:35:54 +02:00
/*!
* \brief SysInfo::SysInfo
*/
SysInfo::SysInfo(QQuickItem* parent)
: QQuickItem(parent)
, m_ram(std::make_unique<RAM>())
, m_cpu(std::make_unique<CPU>())
, m_gpu(std::make_unique<GPU>())
, m_storage(std::make_unique<Storage>())
2021-02-13 20:14:10 +01:00
, m_uptime(std::make_unique<Uptime>())
2018-09-19 13:19:51 +02:00
{
}