Add reload and delete of pressure/depth data

This commit is contained in:
Magne Sjaastad
2023-03-13 14:47:44 +01:00
parent 1b04d9ea45
commit beb06932f5
10 changed files with 159 additions and 10 deletions

View File

@@ -24,6 +24,7 @@
#include "RifReaderPressureDepthData.h"
#include "cafFilePath.h"
#include "cafPdmField.h"
#include "cafPdmObject.h"
#include "cafPdmProxyValueField.h"
@@ -35,6 +36,7 @@ class RimPressureDepthData : public RimNamedObject
public:
RimPressureDepthData();
QString filePath() const;
void setFilePath( const QString& path );
void createRftReaderInterface();
RifReaderRftInterface* rftReader();
@@ -45,6 +47,6 @@ public:
private:
cvf::ref<RifReaderPressureDepthData> m_fmuRftReader;
caf::PdmField<QString> m_filePath;
caf::PdmField<caf::FilePath> m_filePath;
caf::PdmProxyValueField<std::vector<QString>> m_wells;
};