mirror of
https://github.com/chesskit-app/chesskit-engine.git
synced 2026-05-19 15:50:35 +00:00
21 lines
363 B
C++
21 lines
363 B
C++
//
|
|
// stockfish+engine.h
|
|
// ChessKitEngine
|
|
//
|
|
|
|
#ifndef stockfish_engine_h
|
|
#define stockfish_engine_h
|
|
|
|
#include "engine.h"
|
|
#include <string>
|
|
|
|
/// Stockfish implementation of `Engine`.
|
|
class StockfishEngine: public Engine {
|
|
public:
|
|
void initialize();
|
|
void deinitialize();
|
|
void send_command(const std::string &cmd);
|
|
};
|
|
|
|
#endif /* stockfish_engine_h */
|