13 lines
141 B
C
13 lines
141 B
C
|
#ifndef OBJB_P_HPP
|
||
|
#define OBJB_P_HPP
|
||
|
|
||
|
class ObjBPrivate : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ObjBPrivate();
|
||
|
~ObjBPrivate();
|
||
|
};
|
||
|
|
||
|
#endif
|