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
321 B
20 lines
321 B
5 years ago
|
#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
|