From 8064d44e8e2ca00f625c0bb5ebfe24f46f6f944f Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Fri, 9 Jun 2017 13:20:29 +0200 Subject: [PATCH] Remove unused class --- .../FileInterface/CMakeLists_files.cmake | 2 -- .../RifEclipseWellCompletionExporter.cpp | 29 --------------- .../RifEclipseWellCompletionExporter.h | 36 ------------------- 3 files changed, 67 deletions(-) delete mode 100644 ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.cpp delete mode 100644 ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.h diff --git a/ApplicationCode/FileInterface/CMakeLists_files.cmake b/ApplicationCode/FileInterface/CMakeLists_files.cmake index 5f2d3ade1c..aa0a21cb79 100644 --- a/ApplicationCode/FileInterface/CMakeLists_files.cmake +++ b/ApplicationCode/FileInterface/CMakeLists_files.cmake @@ -22,7 +22,6 @@ ${CEE_CURRENT_LIST_DIR}RifReaderMockModel.h ${CEE_CURRENT_LIST_DIR}RifReaderSettings.h ${CEE_CURRENT_LIST_DIR}RifEclipseSummaryAddress.h ${CEE_CURRENT_LIST_DIR}RifWellPathImporter.h -${CEE_CURRENT_LIST_DIR}RifEclipseWellCompletionExporter.h ${CEE_CURRENT_LIST_DIR}RifFractureExportTools.h ) @@ -44,7 +43,6 @@ ${CEE_CURRENT_LIST_DIR}RifReaderMockModel.cpp ${CEE_CURRENT_LIST_DIR}RifReaderSettings.cpp ${CEE_CURRENT_LIST_DIR}RifEclipseSummaryAddress.cpp ${CEE_CURRENT_LIST_DIR}RifWellPathImporter.cpp -${CEE_CURRENT_LIST_DIR}RifEclipseWellCompletionExporter.cpp ${CEE_CURRENT_LIST_DIR}RifFractureExportTools.cpp ) diff --git a/ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.cpp b/ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.cpp deleted file mode 100644 index f9e8bb61cd..0000000000 --- a/ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.cpp +++ /dev/null @@ -1,29 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) 2017 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 -// for more details. -// -///////////////////////////////////////////////////////////////////////////////// - -#include "RifEclipseWellCompletionExporter.h" - -#include "RimFracture.h" - -//-------------------------------------------------------------------------------------------------- -/// -//-------------------------------------------------------------------------------------------------- -void RifEclipseWellCompletionExporter::exportWellCompletions(const QString& filename, const std::vector& fractures) -{ - -} diff --git a/ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.h b/ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.h deleted file mode 100644 index 66c88998fc..0000000000 --- a/ApplicationCode/FileInterface/RifEclipseWellCompletionExporter.h +++ /dev/null @@ -1,36 +0,0 @@ -///////////////////////////////////////////////////////////////////////////////// -// -// Copyright (C) 2017 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 -// for more details. -// -///////////////////////////////////////////////////////////////////////////////// - -#pragma once - -#include - -class RimFracture; - -class QString; - - -//================================================================================================== -// -// -//================================================================================================== -class RifEclipseWellCompletionExporter -{ -public: - static void exportWellCompletions(const QString& filename, const std::vector& fractures); -};