2017-07-20 19:35:53 +02:00

14 lines
129 B
C++

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