reflow/firmware/log.h
2012-11-18 15:40:32 +01:00

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