mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-26 03:56:50 +08:00
19 lines
329 B
C++
19 lines
329 B
C++
#ifndef _CONVERT_H_
|
|
#define _CONVERT_H_
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <sstream>
|
|
|
|
namespace Learner {
|
|
void convert(std::istringstream& is);
|
|
|
|
void convert_bin_from_pgn_extract(std::istringstream& is);
|
|
|
|
void convert_bin(std::istringstream& is);
|
|
|
|
void convert_plain(std::istringstream& is);
|
|
}
|
|
|
|
#endif
|