2016-10-30 18:24:19 +01:00
|
|
|
#ifndef ITEM_HPP
|
|
|
|
#define ITEM_HPP
|
|
|
|
|
|
|
|
#include <QObject>
|
2018-01-26 17:06:56 +01:00
|
|
|
// Include ui_view.h in source and header
|
|
|
|
#include <ui_view.h>
|
2016-10-30 18:24:19 +01:00
|
|
|
|
|
|
|
class Item : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_SLOT
|
|
|
|
void go();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|