stub_analytics_plugin  1.6
Network Optix Video Analytics SDK
i_string.h
1 #pragma once
2 
3 #include <nx/sdk/interface.h>
4 
5 namespace nx {
6 namespace sdk {
7 
8 class IString: public nx::sdk::Interface<IString>
9 {
10 public:
11  static auto interfaceId() { return InterfaceId("nx::sdk::IString"); }
12 
13  virtual const char* str() const = 0;
14 };
15 
16 } // namespace sdk
17 } // namespace nx
Definition: i_ref_countable.h:55
Definition: interface.h:26
Definition: i_string.h:8
Definition: debug.cpp:13