aboutsummaryrefslogtreecommitdiff
path: root/src/engine_tab/EngineTab.hpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2023-01-31 10:26:40 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2023-01-31 10:26:40 +0100
commit1618113e61cce568e1efb091a8a600345fcf84ed (patch)
tree25bdce4f857adf6b86e5d9247a621c0d855b8ce7 /src/engine_tab/EngineTab.hpp
parent2b11848007873daca9c6f13ae4aaa6ca9c20f54e (diff)
Debug engine configuration
Diffstat (limited to 'src/engine_tab/EngineTab.hpp')
-rw-r--r--src/engine_tab/EngineTab.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine_tab/EngineTab.hpp b/src/engine_tab/EngineTab.hpp
index 711c3c7..975ddf6 100644
--- a/src/engine_tab/EngineTab.hpp
+++ b/src/engine_tab/EngineTab.hpp
@@ -9,14 +9,14 @@ wxDECLARE_EVENT(REFRESH_TAB_TITLE, wxCommandEvent);
class EngineTab : public TabEngine, public TabInfos {
uciadapter::UCI *engine;
std::string confGroup, enginePath;
- std::string engineName;
+ std::uint32_t engine_id;
void InitConfiguration();
void LoadConfiguration();
void RefreshItemList();
public:
EngineTab(wxWindow *parent, uciadapter::UCI *engine,
- std::string engine_path_or_name);
- EngineTab(wxWindow *parent, std::string name);
+ std::string engine_path);
+ EngineTab(wxWindow *parent, std::uint32_t id);
~EngineTab();
void ApplyPreferences() {}
std::shared_ptr<Game> GetGame() { return nullptr; }