13 lines
136 B
C++
13 lines
136 B
C++
#include "plainobject.h"
|
|
|
|
#include "myobject3.h"
|
|
|
|
PlainObject::PlainObject()
|
|
{
|
|
}
|
|
|
|
void PlainObject::doSomething()
|
|
{
|
|
MyObject3 obj3;
|
|
}
|