summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocInclude/subB/SubObjB.hpp
blob: 3f29fa289ce0453e7d6bc97cc53a5be1f0a73d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SUBOBJB_HPP
#define SUBOBJB_HPP

#include <QObject>

namespace subB {

class ObjB : public QObject
{
  Q_OBJECT
  Q_SLOT
  void go();
};
}

#endif