2017-07-27 03:29:45 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017 Statoil ASA
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2017-07-27 03:29:45 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2017-07-27 03:29:45 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2017-07-27 03:29:45 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
2017-07-31 02:24:09 -05:00
|
|
|
|
2017-07-27 03:29:45 -05:00
|
|
|
#include "RicfCommandObject.h"
|
|
|
|
|
2018-12-12 01:42:24 -06:00
|
|
|
#include "CompletionExportCommands/RicExportCompletionDataSettingsUi.h"
|
|
|
|
|
2017-07-27 03:29:45 -05:00
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
2017-07-31 02:24:09 -05:00
|
|
|
//==================================================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==================================================================================================
|
2017-07-27 03:29:45 -05:00
|
|
|
class RicfExportMsw : public RicfCommandObject
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RicfExportMsw();
|
|
|
|
|
2020-03-10 08:11:22 -05:00
|
|
|
caf::PdmScriptResponse execute() override;
|
2017-07-27 03:29:45 -05:00
|
|
|
|
|
|
|
private:
|
2019-09-06 03:40:57 -05:00
|
|
|
caf::PdmField<int> m_caseId;
|
|
|
|
caf::PdmField<QString> m_wellPathName;
|
|
|
|
caf::PdmField<bool> m_includePerforations;
|
|
|
|
caf::PdmField<bool> m_includeFishbones;
|
|
|
|
caf::PdmField<bool> m_includeFractures;
|
|
|
|
caf::PdmField<RicExportCompletionDataSettingsUi::ExportSplitType> m_fileSplit;
|
2020-03-10 08:11:22 -05:00
|
|
|
};
|