diff --git a/src/solver/systemConverter/CMakeLists.txt b/src/solver/systemConverter/CMakeLists.txt deleted file mode 100644 index de50a36e44..0000000000 --- a/src/solver/systemConverter/CMakeLists.txt +++ /dev/null @@ -1,25 +0,0 @@ -set(SOURCES - systemConverter.cpp - include/antares/solver/systemConverter/systemConverter.h -) - -# Create the library -add_library(systemConverter STATIC ${SOURCES}) -add_library(Antares::systemConverter ALIAS systemConverter) - -# Specify include directories -target_include_directories(systemConverter - PUBLIC - $ -) - -# Link dependencies (if any) -target_link_libraries(systemConverter - PRIVATE - Antares::antares-study-system-model - Antares::systemParser -) - -install(DIRECTORY include/antares - DESTINATION "include" -) diff --git a/src/solver/systemConverter/include/antares/solver/systemConverter/systemConverter.h b/src/solver/systemConverter/include/antares/solver/systemConverter/systemConverter.h deleted file mode 100644 index 99c7d65e4e..0000000000 --- a/src/solver/systemConverter/include/antares/solver/systemConverter/systemConverter.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright 2007-2024, RTE (https://www.rte-france.com) - * See AUTHORS.txt - * SPDX-License-Identifier: MPL-2.0 - * This file is part of Antares-Simulator, - * Adequacy and Performance assessment for interconnected energy networks. - * - * Antares_Simulator is free software: you can redistribute it and/or modify - * it under the terms of the Mozilla Public Licence 2.0 as published by - * the Mozilla Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * Antares_Simulator 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 - * Mozilla Public Licence 2.0 for more details. - * - * You should have received a copy of the Mozilla Public Licence 2.0 - * along with Antares_Simulator. If not, see . - */ - -#pragma once - -#include "antares/solver/systemParser/library.h" - -namespace Antares -{ -namespace Study::SystemModel -{ -class Library; -} - -namespace Solver::ModelParser -{ -class Library; -} -} // namespace Antares - -namespace Antares::Solver::SystemConverter -{ - -Antares::Study::SystemModel::Library convert(const Antares::Solver::ModelParser::Library& library); - -} // namespace Antares::Solver::SystemConverter diff --git a/src/solver/systemConverter/systemConverter.cpp b/src/solver/systemConverter/systemConverter.cpp deleted file mode 100644 index d36b9fcbf1..0000000000 --- a/src/solver/systemConverter/systemConverter.cpp +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright 2007-2024, RTE (https://www.rte-france.com) - * See AUTHORS.txt - * SPDX-License-Identifier: MPL-2.0 - * This file is part of Antares-Simulator, - * Adequacy and Performance assessment for interconnected energy networks. - * - * Antares_Simulator is free software: you can redistribute it and/or modify - * it under the terms of the Mozilla Public Licence 2.0 as published by - * the Mozilla Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * Antares_Simulator 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 - * Mozilla Public Licence 2.0 for more details. - * - * You should have received a copy of the Mozilla Public Licence 2.0 - * along with Antares_Simulator. If not, see . - */ - -#include "antares/solver/systemConverter/systemConverter.h" - -namespace Antares::Solver::SystemConverter -{ -} // namespace Antares::Solver::SystemConverter