blob: b37ff61e2c581570c753c413451261eec95b5dbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "test1.h"
class Test2 : public QObject
{
Q_OBJECT
public slots:
void onTst1() {}
};
int main()
{
Test1 test1;
Test2 test2;
return 0;
}
#include "main.moc"
|