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.
15 lines
166 B
15 lines
166 B
7 years ago
|
#ifndef EOBJA_P_HPP
|
||
|
#define EOBJA_P_HPP
|
||
|
|
||
7 years ago
|
#include <QObject>
|
||
|
|
||
7 years ago
|
class EObjAPrivate : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
EObjAPrivate();
|
||
|
~EObjAPrivate();
|
||
|
};
|
||
|
|
||
|
#endif
|