You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
235 B
21 lines
235 B
4 years ago
|
#ifndef OBJ2_HH
|
||
|
#define OBJ2_HH
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
// Qt enabled private class
|
||
|
class Obj2Private;
|
||
|
// Qt enabled class
|
||
|
class Obj2 : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
Obj2();
|
||
|
~Obj2();
|
||
|
|
||
|
private:
|
||
|
Obj2Private* const d;
|
||
|
};
|
||
|
|
||
|
#endif
|