2018-03-22 08:40:21 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 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 "RifSummaryCaseRestartSelector.h"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
|
|
|
|
class QStringList;
|
|
|
|
class QTextStream;
|
|
|
|
class QFile;
|
|
|
|
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
2018-03-26 06:11:36 -05:00
|
|
|
// UNDER CONSTRUCTION
|
2018-03-22 08:40:21 -05:00
|
|
|
//==================================================================================================
|
2018-04-19 07:00:00 -05:00
|
|
|
class RifEnsembleParametersReader
|
2018-03-22 08:40:21 -05:00
|
|
|
{
|
|
|
|
public:
|
2018-04-19 07:00:00 -05:00
|
|
|
RifEnsembleParametersReader(const QString& modelDirectory);
|
|
|
|
~RifEnsembleParametersReader();
|
2018-03-22 08:40:21 -05:00
|
|
|
|
2018-04-19 07:00:00 -05:00
|
|
|
//RifEnsembleParameters import();
|
2018-03-22 08:40:21 -05:00
|
|
|
|
|
|
|
private:
|
2018-03-26 06:11:36 -05:00
|
|
|
QString m_modelDirectory;
|
2018-03-22 08:40:21 -05:00
|
|
|
};
|