mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1918 Observed Data : Remove RigSummaryCaseData
This commit is contained in:
parent
32fa6d4920
commit
aba74bcdfd
@ -140,8 +140,6 @@ bool RiaImportEclipseCaseTools::openEclipseCaseShowTimeStepFilterImpl(const QStr
|
||||
|
||||
if (newSumCase)
|
||||
{
|
||||
newSumCase->loadCase();
|
||||
|
||||
RimSummaryCase* existingFileSummaryCase = sumCaseColl->findSummaryCaseFromFileName(newSumCase->summaryHeaderFilename());
|
||||
if (existingFileSummaryCase)
|
||||
{
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
|
||||
#include "RigSingleWellResultsData.h"
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RimEclipseResultCase.h"
|
||||
#include "RimEclipseWell.h"
|
||||
|
@ -108,7 +108,6 @@ bool RicImportObservedDataFeature::createAndAddObservedDataFromFile(const QStrin
|
||||
if (!observedDataCollection) return false;
|
||||
|
||||
RimSummaryObservedDataFile* newObservedData = observedDataCollection->createAndAddObservedDataFromFileName(fileName);
|
||||
newObservedData->loadCase();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -101,8 +101,6 @@ bool RicImportSummaryCaseFeature::createAndAddSummaryCaseFromFile(const QString&
|
||||
if (!sumCaseColl) return false;
|
||||
|
||||
RimSummaryCase* newSumCase = sumCaseColl->createAndAddSummaryCaseFromFileName(fileName);
|
||||
newSumCase->loadCase();
|
||||
|
||||
|
||||
if (app->preferences()->autoCreatePlotsOnImport())
|
||||
{
|
||||
|
@ -70,7 +70,7 @@ void RicReloadSummaryCaseFeature::onActionTriggered(bool isChecked)
|
||||
std::vector<RimSummaryCase*> caseSelection = selectedSummaryCases();
|
||||
for (RimSummaryCase* summaryCase : caseSelection)
|
||||
{
|
||||
summaryCase->reloadCase();
|
||||
summaryCase->createSummaryReaderInterface();
|
||||
|
||||
RiaLogging::info(QString("Reloaded data for %1").arg(summaryCase->summaryHeaderFilename()));
|
||||
}
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "RicSelectSummaryPlotUI.h"
|
||||
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RimMainPlotCollection.h"
|
||||
#include "RimProject.h"
|
||||
|
@ -59,3 +59,21 @@ void RimObservedData::updateFilePathsFromProjectPath(const QString & newProjectP
|
||||
{
|
||||
m_summaryHeaderFilename = RimTools::relocateFile(m_summaryHeaderFilename(), newProjectPath, oldProjectPath, nullptr, nullptr);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimObservedData::createSummaryReaderInterface()
|
||||
{
|
||||
throw std::logic_error("The method or operation is not implemented.");
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RifSummaryReaderInterface* RimObservedData::summaryReader()
|
||||
{
|
||||
throw std::logic_error("The method or operation is not implemented.");
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
@ -40,6 +40,12 @@ public:
|
||||
virtual QString caseName() override;
|
||||
virtual void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath) override;
|
||||
|
||||
|
||||
virtual void createSummaryReaderInterface() override;
|
||||
|
||||
|
||||
virtual RifSummaryReaderInterface* summaryReader() override;
|
||||
|
||||
private:
|
||||
caf::PdmField<caf::AppEnum<RifEclipseSummaryAddress::SummaryVarCategory> > m_summaryCategory;
|
||||
caf::PdmField<QString> m_identifierName;
|
||||
|
@ -68,12 +68,12 @@ RimSummaryObservedDataFile* RimObservedDataCollection::createAndAddObservedDataF
|
||||
|
||||
this->m_observedDataArray.push_back(newObservedData);
|
||||
newObservedData->setSummaryHeaderFilename(fileName);
|
||||
newObservedData->createSummaryReaderInterface();
|
||||
newObservedData->updateOptionSensitivity();
|
||||
|
||||
this->updateConnectedEditors();
|
||||
|
||||
return newObservedData;
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
@ -22,8 +22,6 @@
|
||||
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RiaDefines.h"
|
||||
#include "RimEclipseResultCase.h"
|
||||
#include "RimProject.h"
|
||||
|
@ -20,6 +20,10 @@
|
||||
#include "RimTools.h"
|
||||
|
||||
#include "QFileInfo"
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
#include "QDir"
|
||||
#include "RifEclipseSummaryTools.h"
|
||||
#include "RiaLogging.h"
|
||||
|
||||
|
||||
//==================================================================================================
|
||||
@ -81,3 +85,42 @@ void RimFileSummaryCase::updateFilePathsFromProjectPath(const QString & newProje
|
||||
{
|
||||
m_summaryHeaderFilename = RimTools::relocateFile(m_summaryHeaderFilename(), newProjectPath, oldProjectPath, nullptr, nullptr);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimFileSummaryCase::createSummaryReaderInterface()
|
||||
{
|
||||
m_summaryFileReader = RimFileSummaryCase::findRelatedFilesAndCreateReader(this->summaryHeaderFilename());
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RifReaderEclipseSummary* RimFileSummaryCase::findRelatedFilesAndCreateReader(const QString& headerFileName)
|
||||
{
|
||||
std::string headerFileNameStd;
|
||||
std::vector<std::string> dataFileNames;
|
||||
std::string nativeSumHeadFileName = QDir::toNativeSeparators(headerFileName).toStdString();
|
||||
RifEclipseSummaryTools::findSummaryFiles(nativeSumHeadFileName, &headerFileNameStd, &dataFileNames);
|
||||
|
||||
RifReaderEclipseSummary* summaryFileReader = new RifReaderEclipseSummary;
|
||||
|
||||
if (!summaryFileReader->open(headerFileNameStd, dataFileNames))
|
||||
{
|
||||
RiaLogging::warning(QString("Failed to open summary file %1").arg(headerFileName));
|
||||
|
||||
delete summaryFileReader;
|
||||
summaryFileReader = nullptr;
|
||||
}
|
||||
|
||||
return summaryFileReader;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RifSummaryReaderInterface* RimFileSummaryCase::summaryReader()
|
||||
{
|
||||
return m_summaryFileReader.p();
|
||||
}
|
||||
|
@ -19,12 +19,14 @@
|
||||
|
||||
#include "RimSummaryCase.h"
|
||||
|
||||
|
||||
class RifReaderEclipseSummary;
|
||||
|
||||
//==================================================================================================
|
||||
//
|
||||
//
|
||||
//
|
||||
//==================================================================================================
|
||||
|
||||
class RimFileSummaryCase: public RimSummaryCase
|
||||
{
|
||||
CAF_PDM_HEADER_INIT;
|
||||
@ -37,8 +39,11 @@ public:
|
||||
virtual QString caseName() override;
|
||||
virtual void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath) override;
|
||||
|
||||
virtual void createSummaryReaderInterface() override;
|
||||
virtual RifSummaryReaderInterface* summaryReader() override;
|
||||
|
||||
static RifReaderEclipseSummary* findRelatedFilesAndCreateReader(const QString& headerFileName);
|
||||
|
||||
private:
|
||||
cvf::ref<RifReaderEclipseSummary> m_summaryFileReader;
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
@ -18,8 +18,10 @@
|
||||
|
||||
#include "RimGridSummaryCase.h"
|
||||
|
||||
#include "RigSummaryCaseData.h"
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
|
||||
#include "RimEclipseCase.h"
|
||||
#include "RimFileSummaryCase.h"
|
||||
#include "RimProject.h"
|
||||
|
||||
#include <QFileInfo>
|
||||
@ -59,6 +61,9 @@ RimGridSummaryCase::~RimGridSummaryCase()
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString summaryHeaderFilenameFromEclipseCase(RimEclipseCase* eclCase)
|
||||
{
|
||||
if (!eclCase) return QString();
|
||||
@ -70,6 +75,9 @@ QString summaryHeaderFilenameFromEclipseCase(RimEclipseCase* eclCase)
|
||||
return possibleSumHeaderFileName;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
QString caseNameFromEclipseCase(RimEclipseCase* eclCase)
|
||||
{
|
||||
if (!eclCase) return QString();
|
||||
@ -162,3 +170,19 @@ void RimGridSummaryCase::updateFilePathsFromProjectPath(const QString & newProje
|
||||
// Shouldn't have to do anything
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimGridSummaryCase::createSummaryReaderInterface()
|
||||
{
|
||||
m_summaryFileReader = RimFileSummaryCase::findRelatedFilesAndCreateReader(this->summaryHeaderFilename());
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RifSummaryReaderInterface* RimGridSummaryCase::summaryReader()
|
||||
{
|
||||
return m_summaryFileReader.p();
|
||||
}
|
||||
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "cafPdmProxyValueField.h"
|
||||
|
||||
class RimEclipseCase;
|
||||
class RifReaderEclipseSummary;
|
||||
|
||||
//==================================================================================================
|
||||
//
|
||||
@ -29,7 +30,7 @@ class RimEclipseCase;
|
||||
//
|
||||
//==================================================================================================
|
||||
|
||||
class RimGridSummaryCase: public RimSummaryCase
|
||||
class RimGridSummaryCase : public RimSummaryCase
|
||||
{
|
||||
CAF_PDM_HEADER_INIT;
|
||||
public:
|
||||
@ -43,6 +44,9 @@ public:
|
||||
virtual QString caseName() override;
|
||||
virtual void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath) override;
|
||||
|
||||
virtual void createSummaryReaderInterface() override;
|
||||
virtual RifSummaryReaderInterface* summaryReader() override;
|
||||
|
||||
private:
|
||||
QString eclipseGridFileName() const;
|
||||
|
||||
@ -50,7 +54,6 @@ private:
|
||||
caf::PdmPtrField<RimEclipseCase*> m_eclipseCase;
|
||||
mutable caf::PdmField<QString> m_cachedCaseName;
|
||||
caf::PdmProxyValueField<QString> m_eclipseGridFileName;
|
||||
//caf::PdmProxyValueField<QString> m_eclipseSummaryFileName;
|
||||
|
||||
cvf::ref<RifReaderEclipseSummary> m_summaryFileReader;
|
||||
};
|
||||
|
||||
|
||||
|
@ -18,8 +18,6 @@
|
||||
|
||||
#include "RimSummaryCase.h"
|
||||
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RimEclipseCase.h"
|
||||
#include "RimMainPlotCollection.h"
|
||||
#include "RimOilField.h"
|
||||
@ -55,38 +53,6 @@ RimSummaryCase::~RimSummaryCase()
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimSummaryCase::loadCase()
|
||||
{
|
||||
if (m_summaryCaseData.isNull()) m_summaryCaseData = new RigSummaryCaseData(this->summaryHeaderFilename());
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimSummaryCase::reloadCase()
|
||||
{
|
||||
if (m_summaryCaseData.notNull())
|
||||
{
|
||||
m_summaryCaseData->openOrReloadCase(this->summaryHeaderFilename());
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RifSummaryReaderInterface* RimSummaryCase::summaryReader()
|
||||
{
|
||||
if (m_summaryCaseData.notNull())
|
||||
{
|
||||
return m_summaryCaseData->summaryReader();
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include "cvfObject.h"
|
||||
#include "cafPdmPtrField.h"
|
||||
|
||||
class RigSummaryCaseData;
|
||||
class RifSummaryReaderInterface;
|
||||
|
||||
//==================================================================================================
|
||||
@ -46,9 +45,8 @@ public:
|
||||
void updateAutoShortName();
|
||||
void updateOptionSensitivity();
|
||||
|
||||
void loadCase();
|
||||
void reloadCase();
|
||||
RifSummaryReaderInterface* summaryReader();
|
||||
virtual void createSummaryReaderInterface() = 0;
|
||||
virtual RifSummaryReaderInterface* summaryReader() = 0;
|
||||
|
||||
virtual void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath) = 0;
|
||||
|
||||
@ -60,7 +58,6 @@ protected:
|
||||
caf::PdmField<QString> m_shortName;
|
||||
caf::PdmField<bool> m_useAutoShortName;
|
||||
caf::PdmField<QString> m_summaryHeaderFilename;
|
||||
cvf::ref<RigSummaryCaseData> m_summaryCaseData;
|
||||
bool m_isObservedData;
|
||||
|
||||
private:
|
||||
|
@ -256,9 +256,9 @@ std::vector<RimSummaryCaseCollection*> RimSummaryCaseMainCollection::summaryCase
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RimSummaryCaseMainCollection::loadAllSummaryCaseData()
|
||||
{
|
||||
for (RimSummaryCase* sumCase: allSummaryCases())
|
||||
for (RimSummaryCase* sumCase : allSummaryCases())
|
||||
{
|
||||
if (sumCase) sumCase->loadCase();
|
||||
if (sumCase) sumCase->createSummaryReaderInterface();
|
||||
}
|
||||
}
|
||||
|
||||
@ -273,6 +273,7 @@ RimSummaryCase* RimSummaryCaseMainCollection::createAndAddSummaryCaseFromEclipse
|
||||
RimGridSummaryCase* newSumCase = new RimGridSummaryCase();
|
||||
this->m_cases.push_back(newSumCase);
|
||||
newSumCase->setAssociatedEclipseCase(eclResCase);
|
||||
newSumCase->createSummaryReaderInterface();
|
||||
newSumCase->updateOptionSensitivity();
|
||||
return newSumCase;
|
||||
}
|
||||
@ -288,6 +289,7 @@ RimSummaryCase* RimSummaryCaseMainCollection::createAndAddSummaryCaseFromFileNam
|
||||
|
||||
this->m_cases.push_back(newSumCase);
|
||||
newSumCase->setSummaryHeaderFilename(fileName);
|
||||
newSumCase->createSummaryReaderInterface();
|
||||
newSumCase->updateOptionSensitivity();
|
||||
|
||||
return newSumCase;
|
||||
|
@ -22,8 +22,6 @@
|
||||
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RiaDefines.h"
|
||||
#include "RimEclipseResultCase.h"
|
||||
#include "RimProject.h"
|
||||
|
@ -20,8 +20,6 @@
|
||||
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RiaApplication.h"
|
||||
#include "RimProject.h"
|
||||
#include "RimSummaryCase.h"
|
||||
|
@ -22,8 +22,6 @@
|
||||
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RiaDefines.h"
|
||||
#include "RimEclipseResultCase.h"
|
||||
#include "RimProject.h"
|
||||
|
@ -52,7 +52,6 @@ ${CEE_CURRENT_LIST_DIR}RigWellLogExtractionTools.h
|
||||
${CEE_CURRENT_LIST_DIR}RigHexIntersectionTools.h
|
||||
${CEE_CURRENT_LIST_DIR}RigTimeHistoryResultAccessor.h
|
||||
${CEE_CURRENT_LIST_DIR}RigCurveDataTools.h
|
||||
${CEE_CURRENT_LIST_DIR}RigSummaryCaseData.h
|
||||
${CEE_CURRENT_LIST_DIR}RigObservedData.h
|
||||
${CEE_CURRENT_LIST_DIR}RigLasFileExporter.h
|
||||
${CEE_CURRENT_LIST_DIR}RigSimulationWellCoordsAndMD.h
|
||||
@ -123,7 +122,6 @@ ${CEE_CURRENT_LIST_DIR}RigWellLogCurveData.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RigHexIntersectionTools.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RigTimeHistoryResultAccessor.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RigCurveDataTools.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RigSummaryCaseData.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RigObservedData.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RigLasFileExporter.cpp
|
||||
${CEE_CURRENT_LIST_DIR}RigSimulationWellCoordsAndMD.cpp
|
||||
|
@ -1,69 +0,0 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2016- Statoil ASA
|
||||
//
|
||||
// ResInsight is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "RigSummaryCaseData.h"
|
||||
|
||||
#include "RifEclipseSummaryTools.h"
|
||||
#include "RifReaderEclipseSummary.h"
|
||||
|
||||
#include <QDir>
|
||||
#include <QString>
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RigSummaryCaseData::RigSummaryCaseData(const QString& summaryHeaderFileName)
|
||||
{
|
||||
openOrReloadCase(summaryHeaderFileName);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RigSummaryCaseData::~RigSummaryCaseData()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RigSummaryCaseData::openOrReloadCase(const QString& summaryHeaderFileName)
|
||||
{
|
||||
std::string headerFileName;
|
||||
std::vector<std::string> dataFileNames;
|
||||
std::string nativeSumHeadFileName = QDir::toNativeSeparators(summaryHeaderFileName).toStdString();
|
||||
RifEclipseSummaryTools::findSummaryFiles(nativeSumHeadFileName, &headerFileName, &dataFileNames);
|
||||
|
||||
m_summaryFileReader = new RifReaderEclipseSummary();
|
||||
|
||||
if (!m_summaryFileReader->open(headerFileName, dataFileNames))
|
||||
{
|
||||
m_summaryFileReader = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RifSummaryReaderInterface* RigSummaryCaseData::summaryReader()
|
||||
{
|
||||
return m_summaryFileReader.p();
|
||||
}
|
||||
|
||||
|
@ -1,39 +0,0 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2016- Statoil ASA
|
||||
//
|
||||
// ResInsight is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "cvfBase.h"
|
||||
#include "cvfObject.h"
|
||||
|
||||
class QString;
|
||||
class RifSummaryReaderInterface;
|
||||
|
||||
class RigSummaryCaseData: public cvf::Object
|
||||
{
|
||||
public:
|
||||
explicit RigSummaryCaseData(const QString& summaryHeaderFileName );
|
||||
~RigSummaryCaseData();
|
||||
|
||||
void openOrReloadCase(const QString& summaryHeaderFileName);
|
||||
|
||||
RifSummaryReaderInterface* summaryReader();
|
||||
|
||||
private:
|
||||
cvf::ref<RifSummaryReaderInterface> m_summaryFileReader;
|
||||
};
|
Loading…
Reference in New Issue
Block a user