mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 22:00:10 -05:00
15 lines
166 B
C++
15 lines
166 B
C++
#ifndef EOBJB_P_HPP
|
|
#define EOBJB_P_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class EObjBPrivate : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
EObjBPrivate();
|
|
~EObjBPrivate();
|
|
};
|
|
|
|
#endif
|