14 lines
222 B
C++
14 lines
222 B
C++
#ifndef _LOG_H
|
|
#define _LOG_H
|
|
|
|
class ProfileLog {
|
|
// timestamps of event beginnings/ends
|
|
int Ts_time_start;
|
|
int Ts_time_end;
|
|
int Tl_time_start;
|
|
int Tl_time_end;
|
|
int Tp_time_start;
|
|
int Tp_time_end;
|
|
};
|
|
|
|
#endif
|