2019-11-11 23:01:05 +01:00

14 lines
141 B
C++

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