OtherUnderscore.cpp 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #include "OtherUnderscore.hpp"
  2. #include "OtherUnderscoreExtra.hpp"
  3. #include "OtherUnderscore_p.hpp"
  4. class OtherUnderscoreLocal : public QObject
  5. {
  6. Q_OBJECT
  7. public:
  8. OtherUnderscoreLocal();
  9. ~OtherUnderscoreLocal();
  10. };
  11. OtherUnderscoreLocal::OtherUnderscoreLocal()
  12. {
  13. }
  14. OtherUnderscoreLocal::~OtherUnderscoreLocal()
  15. {
  16. }
  17. OtherUnderscorePrivate::OtherUnderscorePrivate()
  18. {
  19. OtherUnderscoreLocal localObj;
  20. OtherUnderscoreExtra extraObj;
  21. }
  22. OtherUnderscorePrivate::~OtherUnderscorePrivate()
  23. {
  24. }
  25. OtherUnderscore::OtherUnderscore()
  26. : d(new OtherUnderscorePrivate)
  27. {
  28. }
  29. OtherUnderscore::~OtherUnderscore()
  30. {
  31. delete d;
  32. }
  33. // For OtherUnderscoreLocal
  34. #include "OtherUnderscore.moc"
  35. // - Not the own header
  36. #include "moc_OtherUnderscoreExtra.cpp"