From 0f581e97bdeb61f4723b4bda720914b087987aaf Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 22 Dec 2021 16:18:42 -0500 Subject: [PATCH] Add an mqtt object to the Monitor object --- src/zm_monitor.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/zm_monitor.h b/src/zm_monitor.h index 8d6bbd95e..5f0b7dc74 100644 --- a/src/zm_monitor.h +++ b/src/zm_monitor.h @@ -27,6 +27,7 @@ #include "zm_event.h" #include "zm_fifo.h" #include "zm_image.h" +#include "zm_mqtt.h" #include "zm_packet.h" #include "zm_packetqueue.h" #include "zm_utils.h" @@ -400,6 +401,8 @@ protected: std::vector zones; + std::unique_ptr mqtt; + const unsigned char *privacy_bitmask; int n_linked_monitors;