summaryrefslogtreecommitdiff
path: root/Tests/Qt4And5Automoc/main.cpp
blob: 00fd641535d4f3921fb93a636d03d23c35b07d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#include <QObject>

class SomeObject : public QObject
{
  Q_OBJECT
public:
  explicit SomeObject(QObject *parent = 0)
    : QObject(parent)
  {

  }
};

int main(int argc, char **argv)
{
  return 0;
}