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

#include <QObject>

// Object source comes with a .moc include
class LObjAPrivate;
class LObjA : public QObject
{
  Q_OBJECT
public:
  LObjA();
  ~LObjA();

private:
  LObjAPrivate* const d;
};

#endif