Files
zoneminder/src/zm_frame.cpp
Peter Keresztes Schmidt bb35d0a8bb Frame: Auto-format
2021-04-25 22:29:18 +02:00

17 lines
464 B
C++

#include "zm_frame.h"
Frame::Frame(event_id_t p_event_id,
int p_frame_id,
FrameType p_type,
struct timeval p_timestamp,
struct DeltaTimeval &p_delta,
int p_score,
std::vector<ZoneStats> p_stats)
: event_id(p_event_id),
frame_id(p_frame_id),
type(p_type),
timestamp(p_timestamp),
delta(p_delta),
score(p_score),
zone_stats(std::move(p_stats)) {}