17 lines
155 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#ifndef SUBOBJA_HPP
#define SUBOBJA_HPP
#include <QObject>
namespace subA {
class ObjA : public QObject
{
Q_OBJECT
Q_SLOT
void go();
};
}
#endif