ResInsight/Fwk/AppFwk/cafProjectDataModel/cafProjectDataModel_UnitTests/TestObj.cpp
2020-06-19 08:00:01 +02:00

14 lines
245 B
C++

#include "TestObj.h"
CAF_PDM_SOURCE_INIT( TestObj, "TestObj" );
TestObj::TestObj()
{
CAF_PDM_InitObject( "TestObj", "", "", "" );
CAF_PDM_InitField( &m_position, "Position", 8765.2, "Position", "", "", "" );
}
TestObj::~TestObj()
{
}