Files
ResInsight/Fwk/AppFwk/cafTests/cafProjectDataModel_UnitTests/Child.h
Magne Sjaastad 58149cbdb9 Copied in RPM/Fwk/AppFwk
Commented out use of stipple line, as VizFwk is not update yet
2015-07-29 14:19:43 +02:00

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;
};