summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/MocInclude/Common/None.hpp
blob: ca0713ec440bdf79c400875610a0736549e7dad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef None_HPP
#define None_HPP

#include <QObject>

// Object source comes without any _moc/.moc includes
class NonePrivate;
class None : public QObject
{
  Q_OBJECT
public:
  None();
  ~None();

private:
  NonePrivate* const d;
};

#endif