13 lines
141 B
C
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef OBJB_P_HPP
#define OBJB_P_HPP
class ObjBPrivate : public QObject
{
Q_OBJECT
public:
ObjBPrivate();
~ObjBPrivate();
};
#endif