mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-03 12:10:57 -06:00
58149cbdb9
Commented out use of stipple line, as VizFwk is not update yet
24 lines
488 B
C++
24 lines
488 B
C++
#pragma once
|
|
|
|
#define CAF_IS_DEFINING_PDM_FIELD
|
|
#define PdmDataValueField PdmField
|
|
#include "cafPdmDataValueField.h"
|
|
#undef PdmDataValueField
|
|
#undef CAF_IS_DEFINING_PDM_FIELD
|
|
|
|
namespace caf
|
|
{
|
|
|
|
// Specialization to create compiler errors to help finding the PdmField's to rename
|
|
|
|
#ifdef WIN32
|
|
|
|
template<typename DataType >
|
|
class PdmField <DataType*> : public Rename_PdmField_of_pointer_to_PdmChildField // You must rename PdmField<T*> to PdmChildField<T*>
|
|
{
|
|
};
|
|
|
|
#endif
|
|
|
|
}
|