add a non-const version of StartTime() which we need in order to assign to video_data->recording

pull/1857/head
Isaac Connor 2017-04-12 13:36:49 -04:00
parent 7e920eb5d3
commit 954c863ad8
1 changed files with 1 additions and 0 deletions

View File

@ -131,6 +131,7 @@ class Event {
const struct timeval &StartTime() const { return( start_time ); }
const struct timeval &EndTime() const { return( end_time ); }
struct timeval &StartTime() { return( start_time ); }
struct timeval &EndTime() { return( end_time ); }
bool SendFrameImage( const Image *image, bool alarm_frame=false );