mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-24 05:37:13 +00:00
13 lines
141 B
C++
13 lines
141 B
C++
#ifndef _TRANSFORM_H_
|
|
#define _TRANSFORM_H_
|
|
|
|
#include <sstream>
|
|
|
|
namespace Learner {
|
|
|
|
void transform(std::istringstream& is);
|
|
|
|
}
|
|
|
|
#endif
|