ObjA.cpp 177 B

1234567891011121314151617181920
  1. #include "ObjA.hpp"
  2. #include "ObjA_p.h"
  3. ObjAPrivate::ObjAPrivate()
  4. {
  5. }
  6. ObjAPrivate::~ObjAPrivate()
  7. {
  8. }
  9. ObjA::ObjA()
  10. : d(new ObjAPrivate)
  11. {
  12. }
  13. ObjA::~ObjA()
  14. {
  15. delete d;
  16. }