mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
16 lines
265 B
C++
16 lines
265 B
C++
#include "sysinfo.h"
|
|
|
|
SysInfo::SysInfo(QQuickItem *parent):
|
|
QQuickItem(parent)
|
|
{
|
|
// FIXME Elias 2018 QQmlEngine cannot handle smartpointers yet....
|
|
m_ram = new RAM();
|
|
m_cpu = new CPU();
|
|
}
|
|
|
|
SysInfo::~SysInfo()
|
|
{
|
|
delete m_cpu;
|
|
delete m_ram;
|
|
}
|