00001 /* myshogi.h 00002 */ 00003 #ifndef OSL_RECORD_MYSHOGI_H 00004 #define OSL_RECORD_MYSHOGI_H 00005 00006 #include "osl/state/numEffectState.h" 00007 #include <string> 00008 namespace osl 00009 { 00010 namespace record 00011 { 00012 namespace myshogi 00013 { 00014 std::string show(const NumEffectState& state); 00015 std::string show(Player); 00016 std::string show(Ptype); 00017 std::string show(Position); 00018 std::string show(Piece); 00019 } 00020 } 00021 } 00022 00023 #endif /* OSL_RECORD_MYSHOGI_H */ 00024 // ;;; Local Variables: 00025 // ;;; mode:c++ 00026 // ;;; c-basic-offset:2 00027 // ;;; End: