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