Files
ResInsight/Fwk/AppFwk/cafTests/cafProjectDataModel_UnitTests/TestObj.h
Magne Sjaastad 486f383de7 Integrated changes for framework
Pdm fields can contain a forward declared Pdm object without the include
file
VizFwk: Added VertexColoring shader to be able to use per vertex color
used from drawableGeo::setColorArray()
2014-04-11 11:06:42 +02:00

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