blob: 035050ec742d814578b3f5c78b0ca4e84a76eb1e [file] [log] [blame]
#ifndef OBJECT_HPP
#define OBJECT_HPP
#include <QObject>
class Object_hpp : public QObject
{
Q_OBJECT
Q_SLOT
void go(){};
};
#endif