18 lines
161 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef GOBJ_HPP
#define GOBJ_HPP
#include <QObject>
namespace subGlobal {
class GObj : public QObject
{
Q_OBJECT
public:
GObj();
~GObj();
};
}
#endif