Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Jan 30, 2024
1 parent 1376ff0 commit 3c3547e
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/ui/simulator/cmake/components-htmllistbox.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

#include <wx/htmllbox.h>
#include "item/item.h"
#include "sort.h"
#include <wx/srchctrl.h>
#include "datasource/datasource.h"
#include <ui/common/component/panel.h>
Expand Down
54 changes: 54 additions & 0 deletions src/ui/simulator/toolbox/input/input.cpp
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
**
** 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

0 comments on commit 3c3547e

Please sign in to comment.