OtherUnderscoreExtra.cpp 356 B

123456789101112131415161718192021
  1. #include "OtherUnderscoreExtra.hpp"
  2. #include "OtherUnderscoreExtra_p.hpp"
  3. OtherUnderscoreExtraPrivate::OtherUnderscoreExtraPrivate()
  4. {
  5. }
  6. OtherUnderscoreExtraPrivate::~OtherUnderscoreExtraPrivate()
  7. {
  8. }
  9. OtherUnderscoreExtra::OtherUnderscoreExtra()
  10. : d(new OtherUnderscoreExtraPrivate)
  11. {
  12. }
  13. OtherUnderscoreExtra::~OtherUnderscoreExtra()
  14. {
  15. delete d;
  16. }