9 lines
119 B
Plaintext
9 lines
119 B
Plaintext
|
#include <QObject>
|
||
|
class test1 : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public slots:
|
||
|
void onTst1() {}
|
||
|
void onTst2() {}
|
||
|
};
|