Belofte version 2.1.9
A promising chess program using the UCI or Winboard interface
fen.cpp
Go to the documentation of this file.
1/*---------------------------------------------------------------------+
2 * File: fen.cpp
3 * Project: part of belofte - A Promising Chess Program
4 * Author: yves
5 * SPDX-License-Identifier: GPL-2.0-only
6+----------------------------------------------------------------------*/
7
8#include "belofte.h"
9
10//-----------------------------------------------------------------------
11
12std::ostream& operator<<(std::ostream& os, bFen const& f)
13{
14 os << f.operator std::string();
15 return os;
16}
17
18// eof
This is the main include file, needs to be included before any other include.
bFen(bFen const &f)
Definition fen.h:16
std::ostream & operator<<(std::ostream &os, bFen const &f)
Definition fen.cpp:12