plainobject.cpp 136 B

123456789101112
  1. #include "plainobject.h"
  2. #include "myobject3.h"
  3. PlainObject::PlainObject()
  4. {
  5. }
  6. void PlainObject::doSomething()
  7. {
  8. MyObject3 obj3;
  9. }