mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
12 lines
243 B
C++
12 lines
243 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() {}
|