mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
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()
23 lines
254 B
C++
23 lines
254 B
C++
#pragma once
|
|
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPointer.h"
|
|
|
|
class TestObj;
|
|
|
|
class Child: public caf::PdmObject
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
Child();
|
|
|
|
~Child();
|
|
|
|
|
|
caf::PdmField<TestObj*> m_testObj;
|
|
};
|
|
|
|
|