14 lines
270 B
C++
14 lines
270 B
C++
#include "mainobject.h"
|
|
|
|
MainObject::MainObject(QIODevice* ioDevice) :
|
|
masterIODevice(ioDevice),
|
|
micro(masterIODevice)
|
|
{
|
|
//connect item store
|
|
QObject::connect(µ, &Microcontroller::gotItemList, &items, &ItemStore::addItems);
|
|
}
|
|
|
|
MainObject::~MainObject()
|
|
{
|
|
}
|
|
|