mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 12:49:50 -05:00
15 lines
171 B
C++
15 lines
171 B
C++
#ifndef OwnDot_P_HPP
|
|
#define OwnDot_P_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class OwnDotPrivate : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
OwnDotPrivate();
|
|
~OwnDotPrivate();
|
|
};
|
|
|
|
#endif
|