Improve code and doc

This commit is contained in:
Loic Guegan 2023-06-04 15:03:22 +02:00
parent 6c7f492e5a
commit fabc20e187
6 changed files with 19 additions and 10 deletions

View file

@ -17,6 +17,9 @@ class EngineTab : public TabEngine, public TabInfos {
void InitConfiguration();
void LoadConfiguration();
void RefreshItemList();
void OnSave(wxCommandEvent &event);
void OnDelete(wxCommandEvent &event);
public:
EngineTab(wxWindow *parent, uciadapter::UCI *engine,
std::string engine_path);
@ -26,6 +29,4 @@ public:
std::shared_ptr<Game> GetGame() { return nullptr; }
std::shared_ptr<GameBase> GetBase() { return nullptr; }
std::uint32_t GetEngineId() { return engine_id; };
void OnSave(wxCommandEvent &event);
void OnDelete(wxCommandEvent &event);
};