mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-09 23:16:00 -06:00
23 lines
264 B
C++
23 lines
264 B
C++
#pragma once
|
|
|
|
#include "cafPdmChildField.h"
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPointer.h"
|
|
|
|
class TestObj;
|
|
|
|
class Child: public caf::PdmObject
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
Child();
|
|
|
|
~Child();
|
|
|
|
|
|
caf::PdmChildField<TestObj*> m_testObj;
|
|
};
|
|
|
|
|