code_profiler
ProfileLog.h
Go to the documentation of this file.
1 #ifndef PROFILING_PROFILELOG_H_
2 #define PROFILING_PROFILELOG_H_
3 #ifdef PROFILEAPP
4 #include <iostream>
5 #include <vector>
6 #include <map>
7 
8 struct Statistics;
9 class ProfileLog
10 {
11 public:
12  static void PrintLog(std::ostream& stream, std::vector< std::map< std::string, Statistics >* >& stats, double totalTime);
13  static void PrintLog(std::vector< std::map< std::string, Statistics >* >& stats, double totalTime);
14 
15 };
16 #endif
17 
18 #endif // PROFILING_PROFILELOG_H_
vector
iostream
std::ostream
map