blob: 7feaa46f129bfe991846199415f12b12af277340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef OtherUnderscoreSub_HPP
#define OtherUnderscoreSub_HPP
#include <QObject>
// Sources includes a moc_ includes of an extra object in a subdirectory
class OtherUnderscoreSubPrivate;
class OtherUnderscoreSub : public QObject
{
Q_OBJECT
public:
OtherUnderscoreSub();
~OtherUnderscoreSub();
private:
OtherUnderscoreSubPrivate* const d;
};
#endif
|