14 lines
135 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef QITEMD_HPP
#define QITEMD_HPP
#include <QObject>
class QItemD : public QObject
{
Q_OBJECT
Q_SLOT
void go();
};
#endif