Files
CMake/Tests/QtAutogen/MocInclude/Common/OtherUnderscore.hpp
T
2019-09-18 11:48:10 -04:00

20 lines
321 B
C++

#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