2018-08-09 18:06:22 +02:00

16 lines
138 B
C++

#ifndef ITEM_HPP
#define ITEM_HPP
#include <QObject>
class Item : public QObject
{
Q_OBJECT
public:
Q_SLOT
void go();
};
#endif