mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06: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() {}
|