15 lines
166 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef EOBJA_P_HPP
#define EOBJA_P_HPP
2018-04-23 21:13:27 +02:00
#include <QObject>
2018-01-26 17:06:56 +01:00
class EObjAPrivate : public QObject
{
Q_OBJECT
public:
EObjAPrivate();
~EObjAPrivate();
};
#endif