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