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