/usr/include/osl/pieceStandIO.h is in libosl-dev 0.6.0-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /* pieceStandIO.h
*/
#ifndef OSL_PIECESTANDIO_H
#define OSL_PIECESTANDIO_H
#include <iosfwd>
namespace osl
{
class PieceStand;
struct PieceStandIO
{
/**
* 持駒の数を空白区切で出力する. 数値処理用途
*/
static std::ostream& writeNumbers(std::ostream&, const PieceStand& stand);
static std::istream& readNumbers(std::istream&, PieceStand& stand);
};
} // namespace osl
#endif /* _PIECESTANDIO_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End:
|