/* * ExecutionsStats.h * */ #ifndef TOOLS_EXECUTIONSTATS_H_ #define TOOLS_EXECUTIONSTATS_H_ #include using namespace std; class ExecutionStats : public map { public: ExecutionStats& operator+=(const ExecutionStats& other); void print(); }; #endif /* TOOLS_EXECUTIONSTATS_H_ */