13 lines
216 B
C++
13 lines
216 B
C++
|
|
||
|
#include "ProfileLog.h"
|
||
|
|
||
|
ProfileLog::ProfileLog() {
|
||
|
// timestamps of event beginnings/ends
|
||
|
Ts_time_start = 0;
|
||
|
Ts_time_end = 0;
|
||
|
Tl_time_start = 0;
|
||
|
Tl_time_end = 0;
|
||
|
Tp_time_start = 0;
|
||
|
Tp_time_end = 0;
|
||
|
}
|