mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 20:29:49 -05:00
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
|