mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-25 01:01:53 -04:00
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
17 lines
443 B
C++
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)) {}
|