blob: a4ff603cf38f9553fcc456ecfed3cdfcb909369c [file] [log] [blame]
#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