SubObjC.hpp 155 B

12345678910111213141516
  1. #ifndef SUBOBJC_HPP
  2. #define SUBOBJC_HPP
  3. #include <QObject>
  4. namespace subC {
  5. class ObjC : public QObject
  6. {
  7. Q_OBJECT
  8. Q_SLOT
  9. void go();
  10. };
  11. }
  12. #endif