blob: 2066ac30527b0289dd9d383ac33ca74aa9003ffa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef OtherUnderscoreEXTRA_P_HPP
#define OtherUnderscoreEXTRA_P_HPP
#include <QObject>
class OtherUnderscoreExtraPrivate : public QObject
{
Q_OBJECT
public:
OtherUnderscoreExtraPrivate();
~OtherUnderscoreExtraPrivate();
};
#endif
|