stub_analytics_plugin  1.6
Network Optix Video Analytics SDK
iterable_metadata_packet.h
1 #pragma once
2 
3 #include <plugins/plugin_api.h>
4 
5 #include "metadata_packet.h"
6 #include "metadata_item.h"
7 
8 namespace nx {
9 namespace sdk {
10 namespace analytics {
11 
16 static const nxpl::NX_GUID IID_IterableMetadataPacket =
17  {{0x84, 0xbd, 0x34, 0x44, 0x98, 0xa9, 0x40, 0xbc, 0x94, 0x96, 0xec, 0xd3, 0xc9, 0x11, 0x86, 0xe8}};
18 
23 {
24 public:
25  virtual MetadataItem* nextItem() = 0;
26 };
27 
28 } // namespace analytics
29 } // namesapce sdk
30 } // namespace nx
Definition: iterable_metadata_packet.h:22
GUID of plugin interface.
Definition: plugin_api.h:21
Definition: metadata_packet.h:21
Definition: debug.cpp:14
Definition: metadata_item.h:20