00001 /* textPerformanceLog.h 00002 */ 00003 #ifndef OSL_TEXTPERFORMANCELOG_H 00004 #define OSL_TEXTPERFORMANCELOG_H 00005 00006 #include "osl/misc/log/performanceLog.h" 00007 00012 namespace osl 00013 { 00014 namespace misc 00015 { 00016 namespace log 00017 { 00018 struct TextPerformanceLog : public PerformanceLog 00019 { 00020 TextPerformanceLog(); 00021 ~TextPerformanceLog(); 00022 void record(const char *name, Move correctMove, 00023 Move result, unsigned int nodes, unsigned int qnodes, 00024 double seconds, int depth); 00025 }; 00026 } 00027 } 00028 } // namespace osl 00029 00030 00031 #endif /* OSL_TEXTPERFORMANCELOG_H */ 00032 // ;;; Local Variables: 00033 // ;;; mode:c++ 00034 // ;;; c-basic-offset:2 00035 // ;;; coding:utf-8 00036 // ;;; End: