15 lines
166 B
C++
15 lines
166 B
C++
#ifndef LOBJB_P_HPP
|
|
#define LOBJB_P_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class LObjBPrivate : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
LObjBPrivate();
|
|
~LObjBPrivate();
|
|
};
|
|
|
|
#endif
|