ObjB.cpp 202 B

12345678910111213141516171819202122
  1. #include "ObjB.hpp"
  2. #include "ObjB_p.h"
  3. ObjBPrivate::ObjBPrivate()
  4. {
  5. }
  6. ObjBPrivate::~ObjBPrivate()
  7. {
  8. }
  9. ObjB::ObjB()
  10. : d(new ObjBPrivate)
  11. {
  12. }
  13. ObjB::~ObjB()
  14. {
  15. delete d;
  16. }
  17. #include "moc_ObjB.cpp"