2017-07-20 19:35:53 +02:00

17 lines
155 B
C++

#ifndef SUBOBJC_HPP
#define SUBOBJC_HPP
#include <QObject>
namespace subC {
class ObjC : public QObject
{
Q_OBJECT
Q_SLOT
void go();
};
}
#endif