mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
20 lines
262 B
C++
20 lines
262 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;
|
|
};
|