blob: 96155bb98c7eaa7d99a95d9a86981d903c756fcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "LiveEngineDialogFB.h"
#include "UCI.hpp"
#include "ochess.hpp"
#include <wx/timer.h>
class LiveEngineDialog : public LiveEngineDialogFB {
uciadapter::UCI *engine;
std::string engine_name;
wxTimer timer;
public:
LiveEngineDialog(wxWindow *parent, std::string engine_name);
void StartEngine();
void TogglePauseEngine(wxCommandEvent &event);
void OnTimerTick(wxTimerEvent &event);
};
|