mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-11 16:06:04 -06:00
19 lines
255 B
C
19 lines
255 B
C
|
#pragma once
|
||
|
|
||
|
#include "cafPdmField.h"
|
||
|
#include "cafPdmObject.h"
|
||
|
#include "cafPdmPointer.h"
|
||
|
|
||
|
class TestObj: public caf::PdmObject
|
||
|
{
|
||
|
CAF_PDM_HEADER_INIT;
|
||
|
|
||
|
|
||
|
public:
|
||
|
TestObj();
|
||
|
|
||
|
~TestObj();
|
||
|
|
||
|
caf::PdmField<double> m_position;
|
||
|
};
|