ochess/src/engine_tab/EngineTab.hpp

17 lines
432 B
C++
Raw Normal View History

2022-02-26 17:05:47 +01:00
#include "EngineTabBF.h"
#include "UCI.hpp"
2022-02-26 18:46:06 +01:00
#include "ochess.hpp"
2022-02-26 17:05:47 +01:00
class EngineTab : public EngineTabBF, public TabInfos {
uciadapter::UCI *engine;
2022-02-26 18:46:06 +01:00
std::string confGroup, enginePath;
void InitConfiguration();
2022-02-26 17:05:47 +01:00
public:
EngineTab(wxWindow *parent, std::string engine_path_or_name);
void ApplyPreferences() {}
void *GetGame() { return (NULL); }
2022-02-26 18:46:06 +01:00
void *GetBase() { return (NULL); }
void OnSave(wxCommandEvent &event);
2022-02-26 17:05:47 +01:00
};