00001 /* pieceStandIO.h 00002 */ 00003 #ifndef _PIECESTANDIO_H 00004 #define _PIECESTANDIO_H 00005 #include <iosfwd> 00006 namespace osl 00007 { 00008 class PieceStand; 00009 struct PieceStandIO 00010 { 00014 static std::ostream& writeNumbers(std::ostream&, const PieceStand& stand); 00015 static std::istream& readNumbers(std::istream&, PieceStand& stand); 00016 }; 00017 } // namespace osl 00018 00019 #endif /* _PIECESTANDIO_H */ 00020 // ;;; Local Variables: 00021 // ;;; mode:c++ 00022 // ;;; c-basic-offset:2 00023 // ;;; End: