diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-26 18:46:06 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-26 18:46:06 +0100 |
| commit | f329c5f20434a07cc6c64c90d221181c27207a9c (patch) | |
| tree | 63614bf7082b37728d873319d76bf000f389d1b1 /src/engine_tab/EngineTab.hpp | |
| parent | 65e9049351130ff54b305dd8c82c969456a0797b (diff) | |
Improve engine support
Diffstat (limited to 'src/engine_tab/EngineTab.hpp')
| -rw-r--r-- | src/engine_tab/EngineTab.hpp | 8 |
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 |
