19 lines
217 B
C++
Raw Normal View History

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