18 lines
192 B
C++
18 lines
192 B
C++
#ifndef BBB_ITEM_HPP
|
|
#define BBB_ITEM_HPP
|
|
|
|
#include <QObject>
|
|
// Include ui_view.h only in source
|
|
|
|
namespace bbb {
|
|
|
|
class Item : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go();
|
|
};
|
|
}
|
|
|
|
#endif
|