SObjC.cpp 437 B

1234567891011121314151617181920212223242526272829303132333435
  1. #include "SObjC.hpp"
  2. void SObjCLocalFunction();
  3. class SObjCLocal : public QObject
  4. {
  5. Q_OBJECT
  6. public:
  7. SObjCLocal();
  8. ~SObjCLocal();
  9. };
  10. SObjCLocal::SObjCLocal()
  11. {
  12. }
  13. SObjCLocal::~SObjCLocal()
  14. {
  15. }
  16. SObjC::SObjC()
  17. {
  18. SObjCLocal localObject;
  19. SObjCLocalFunction();
  20. }
  21. SObjC::~SObjC()
  22. {
  23. }
  24. #include "SObjC.moc"
  25. #include "moc_SObjC.cpp"
  26. // Include moc_ file for which the header is SKIP_AUTOMOC enabled
  27. #include "moc_SObjCExtra.cpp"