All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
htmlPerformanceLog.h
Go to the documentation of this file.
1 /* htmlPerformanceLog.h
2  */
3 #ifndef OSL_HTMLPERFORMANCELOG_H
4 #define OSL_HTMLPERFORMANCELOG_H
5 
7 #include <fstream>
8 
12 namespace osl
13 {
14  namespace misc
15  {
16  namespace log
17  {
19  {
20  std::ofstream os;
21  HtmlPerformanceLog(const char *filename, const char *title);
23  void record(const char *name, Move correctMove, Move result,
24  unsigned int nodes, unsigned int qnodes,
25  double seconds,
26  int depth);
27  };
28  }
29  }
30 }
31 
32 
33 #endif /* OSL_HTMLPERFORMANCELOG_H */
34 // ;;; Local Variables:
35 // ;;; mode:c++
36 // ;;; c-basic-offset:2
37 // ;;; coding:utf-8
38 // ;;; End: