15 lines
166 B
C++
Raw Normal View History

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