aboutsummaryrefslogtreecommitdiff
path: root/src/engine_tab/EngineTab.hpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-02-26 18:46:06 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-02-26 18:46:06 +0100
commitf329c5f20434a07cc6c64c90d221181c27207a9c (patch)
tree63614bf7082b37728d873319d76bf000f389d1b1 /src/engine_tab/EngineTab.hpp
parent65e9049351130ff54b305dd8c82c969456a0797b (diff)
Improve engine support
Diffstat (limited to 'src/engine_tab/EngineTab.hpp')
-rw-r--r--src/engine_tab/EngineTab.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/engine_tab/EngineTab.hpp b/src/engine_tab/EngineTab.hpp
index 4538d0b..2792bc6 100644
--- a/src/engine_tab/EngineTab.hpp
+++ b/src/engine_tab/EngineTab.hpp
@@ -1,13 +1,17 @@
#include "EngineTabBF.h"
-#include "ochess.hpp"
#include "UCI.hpp"
+#include "ochess.hpp"
class EngineTab : public EngineTabBF, public TabInfos {
uciadapter::UCI *engine;
+ std::string confGroup, enginePath;
+
+ void InitConfiguration();
public:
EngineTab(wxWindow *parent, std::string engine_path_or_name);
void ApplyPreferences() {}
void *GetGame() { return (NULL); }
- void *GetBase() { return (NULL); };
+ void *GetBase() { return (NULL); }
+ void OnSave(wxCommandEvent &event);
}; \ No newline at end of file