blob: 4a43755437c73be06646ab057602e2ddf288f457 [file] [log] [blame]
#ifndef GOBJ_P_HPP
#define GOBJ_P_HPP
#include <QObject>
namespace subGlobal {
class GObjPrivate : public QObject
{
Q_OBJECT
public:
GObjPrivate();
~GObjPrivate();
};
}
#endif