summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/mocInclude/subGlobal/GObj.hpp
blob: 2f9ee82078b7dfbf86f991c0ea14a38b896b9f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef GOBJ_HPP
#define GOBJ_HPP

#include <QObject>

namespace subGlobal {

class GObj : public QObject
{
  Q_OBJECT
public:
  GObj();
  ~GObj();
};
}

#endif