15 lines
156 B
C
15 lines
156 B
C
|
#ifndef OBJ_P_HPP
|
||
|
#define OBJ_P_HPP
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class ObjPrivate : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ObjPrivate();
|
||
|
~ObjPrivate();
|
||
|
};
|
||
|
|
||
|
#endif
|