17 lines
156 B
C++
17 lines
156 B
C++
|
#ifndef BBB_ITEM_HPP
|
||
|
#define BBB_ITEM_HPP
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
namespace bbb {
|
||
|
|
||
|
class Item : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_SLOT
|
||
|
void go();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|