mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
16 lines
353 B
C++
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()
|
|
{
|
|
}
|