cmake/Tests/QtAutogen/MocInclude/Common/OtherUnderscore.hpp

20 lines
321 B
C++
Raw Normal View History

2020-02-01 23:06:01 +01:00
#ifndef OtherUnderscore_HPP
#define OtherUnderscore_HPP
#include <QObject>
// Sources includes a moc_ includes of an extra object
class OtherUnderscorePrivate;
class OtherUnderscore : public QObject
{
Q_OBJECT
public:
OtherUnderscore();
~OtherUnderscore();
private:
OtherUnderscorePrivate* const d;
};
#endif