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