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