15 lines
171 B
C++
15 lines
171 B
C++
#ifndef OwnDot_P_HPP
|
|
#define OwnDot_P_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class OwnDotPrivate : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
OwnDotPrivate();
|
|
~OwnDotPrivate();
|
|
};
|
|
|
|
#endif
|