14 lines
141 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#ifndef OBJECT_HPP
#define OBJECT_HPP
#include <QObject>
2019-11-11 23:01:05 +01:00
class Object_hpp : public QObject
2017-07-20 19:35:53 +02:00
{
Q_OBJECT
Q_SLOT
2019-11-11 23:01:05 +01:00
void go(){};
2017-07-20 19:35:53 +02:00
};
#endif