diff --git a/src/ui/simulator/cmake/components-htmllistbox.cmake b/src/ui/simulator/cmake/components-htmllistbox.cmake index 62b5d27d40..5809b8cb6c 100644 --- a/src/ui/simulator/cmake/components-htmllistbox.cmake +++ b/src/ui/simulator/cmake/components-htmllistbox.cmake @@ -6,7 +6,6 @@ add_library(antares-ui-component-htmllistbox toolbox/components/htmllistbox/item/item.h toolbox/components/htmllistbox/item/item.hxx toolbox/components/htmllistbox/item/item.cpp - toolbox/components/htmllistbox/sort.h toolbox/components/htmllistbox/item/info.h toolbox/components/htmllistbox/item/info.cpp toolbox/components/htmllistbox/item/group.h toolbox/components/htmllistbox/item/group.cpp toolbox/components/htmllistbox/item/area.h diff --git a/src/ui/simulator/toolbox/components/htmllistbox/component.h b/src/ui/simulator/toolbox/components/htmllistbox/component.h index 5239354c99..b751bd1a5f 100644 --- a/src/ui/simulator/toolbox/components/htmllistbox/component.h +++ b/src/ui/simulator/toolbox/components/htmllistbox/component.h @@ -29,7 +29,6 @@ #include #include "item/item.h" -#include "sort.h" #include #include "datasource/datasource.h" #include diff --git a/src/ui/simulator/toolbox/input/input.cpp b/src/ui/simulator/toolbox/input/input.cpp new file mode 100644 index 0000000000..1af1ead929 --- /dev/null +++ b/src/ui/simulator/toolbox/input/input.cpp @@ -0,0 +1,54 @@ +/* +** Copyright 2007-2023 RTE +** Authors: Antares_Simulator Team +** +** This file is part of Antares_Simulator. +** +** Antares_Simulator 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. +** +** There are special exceptions to the terms and conditions of the +** license as they are applied to this software. View the full text of +** the exceptions in file COPYING.txt in the directory of this software +** distribution +** +** 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 +** GNU General Public License for more details. +** +** You should have received a copy of the GNU General Public License +** along with Antares_Simulator. If not, see . +** +** SPDX-License-Identifier: licenceRef-GPL3_WITH_RTE-Exceptions +*/ + +#include "input.h" + +namespace Antares +{ +namespace Toolbox +{ +namespace InputSelector +{ +AInput::AInput(wxWindow* parent) : Antares::Component::Panel(parent) +{ +} + +AInput::~AInput() +{ +} + +void AInput::updateInnerData(const wxString&) +{ +} + +void AInput::updateRowContent() +{ +} + +} // namespace InputSelector +} // namespace Toolbox +} // namespace Antares