#include "sysinfo.h" /*! \module ScreenPlaySysInfo \title ScreenPlaySysInfo \brief Module for ScreenPlaySysInfo. */ /*! \class SysInfo \inmodule ScreenPlaySysInfo \brief . */ /*! * \brief SysInfo::SysInfo */ SysInfo::SysInfo(QQuickItem* parent) : QQuickItem(parent) , m_ram(std::make_unique()) , m_cpu(std::make_unique()) , m_gpu(std::make_unique()) , m_storage(std::make_unique()) , m_uptime(std::make_unique()) { }