RObjC.cpp 368 B

123456789101112131415161718192021222324252627282930
  1. #include "RObjC.hpp"
  2. #include <QObject>
  3. class RObjCPrivate : public QObject
  4. {
  5. Q_OBJECT
  6. public:
  7. RObjCPrivate();
  8. ~RObjCPrivate();
  9. };
  10. RObjCPrivate::RObjCPrivate()
  11. {
  12. }
  13. RObjCPrivate::~RObjCPrivate()
  14. {
  15. }
  16. RObjC::RObjC()
  17. {
  18. RObjCPrivate privateObject;
  19. }
  20. RObjC::~RObjC()
  21. {
  22. }
  23. // Relaxed include should moc this source instead of the header
  24. #include "moc_RObjC.cpp"