1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-20 09:21:45 +02:00
ScreenPlay/ScreenPlaySysInfo/sysinfo.cpp
2018-09-19 13:19:51 +02:00

16 lines
353 B
C++

#include "sysinfo.h"
SysInfo::SysInfo(QQuickItem *parent):
QQuickItem(parent)
{
// By default, QQuickItem does not draw anything. If you subclass
// QQuickItem to create a visual item, you will need to uncomment the
// following line and re-implement updatePaintNode()
// setFlag(ItemHasContents, true);
}
SysInfo::~SysInfo()
{
}