17 lines
155 B
C++
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
|