ochess/src/engine_tab/EngineTab.hpp

13 lines
329 B
C++
Raw Normal View History

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