15 lines
166 B
C
Raw Normal View History

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