14 lines
138 B
C++
Raw Normal View History

2020-08-30 11:54:41 +02:00
#ifndef OBJECT_HH
#define OBJECT_HH
#include <QObject>
class Object_hh : public QObject
{
Q_OBJECT
Q_SLOT
void go(){};
};
#endif