15 lines
222 B
C
15 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
|