14 lines
123 B
C
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef CLASSB_HPP
#define CLASSB_HPP
#include <QObject>
class B : public QObject
{
Q_OBJECT
public:
B();
};
#endif