You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
360 B
20 lines
360 B
#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
|