blob: 75e83f483e20c16363c8f56958ff60b9c9d19619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ITEM_HPP
#define ITEM_HPP
#include <QObject>
// Include ui_view.h in source and header
#include <ui_view.h>
class Item : public QObject
{
Q_OBJECT
Q_SLOT
void go();
};
#endif
|