mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1813 Observed data: Add pdmfields identifier type and name
This commit is contained in:
parent
99e1f75633
commit
da2775d184
@ -29,6 +29,9 @@ CAF_PDM_SOURCE_INIT(RimObservedData, "ObservedData");
|
||||
RimObservedData::RimObservedData()
|
||||
{
|
||||
m_isObservedData = true;
|
||||
|
||||
CAF_PDM_InitFieldNoDefault(&m_identifierType, "identifierType", "Identifier Type", "", "", "");
|
||||
CAF_PDM_InitFieldNoDefault(&m_identifierName, "identifierName", "Identifier Name", "", "", "");
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
@ -37,4 +37,7 @@ public:
|
||||
virtual QString caseName() override;
|
||||
virtual void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath) override;
|
||||
|
||||
private:
|
||||
caf::PdmField<QString> m_identifierType;
|
||||
caf::PdmField<QString> m_identifierName;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user