summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocInclude/LObjB.hpp
blob: eb4e58d79130c87bf4236ba37e4b02eaf9334ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef LLObjB_HPP
#define LLObjB_HPP

#include <QObject>

// Object source comes with a .moc and a _moc include
class LObjBPrivate;
class LObjB : public QObject
{
  Q_OBJECT
public:
  LObjB();
  ~LObjB();

private:
  LObjBPrivate* const d;
};

#endif