Files
zoneminder/src/zm_frame.cpp
Aaron Kling c4683d90a9 Format code using astyle google format
Commands used:
astyle --style=google --indent=spaces=2 --keep-one-line-blocks src/*.cpp
astyle --style=google --indent=spaces=2 --keep-one-line-blocks src/*.h
2024-03-26 13:43:58 -05:00

17 lines
443 B
C++

#include "zm_frame.h"
Frame::Frame(event_id_t p_event_id,
int p_frame_id,
FrameType p_type,
SystemTimePoint p_timestamp,
Microseconds 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)) {}