mirror of
https://github.com/reactos/CMake.git
synced 2025-02-12 23:19:13 +00:00
19 lines
202 B
C++
19 lines
202 B
C++
![]() |
|
||
|
#include <QObject>
|
||
|
|
||
|
class SomeObject : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit SomeObject(QObject *parent = 0)
|
||
|
: QObject(parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
};
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|