14 lines
135 B
C++
Raw Normal View History

2017-04-14 19:02:05 +02:00
#ifndef QITEMB_HPP
#define QITEMB_HPP
#include <QObject>
class QItemB : public QObject
{
Q_OBJECT
Q_SLOT
void go();
};
#endif