nx_metadata_sdk  1.0
Metadata SDK
i_string.h
1 // Copyright 2018-present Network Optix, Inc. Licensed under MPL 2.0: www.mozilla.org/MPL/2.0/
2 
3 #pragma once
4 
5 #include <nx/sdk/interface.h>
6 
7 namespace nx::sdk {
8 
9 class IString: public nx::sdk::Interface<IString>
10 {
11 public:
12  static auto interfaceId() { return makeId("nx::sdk::IString"); }
13 
15  virtual const char* str() const = 0;
16 };
17 using IString0 = IString;
18 
19 } // namespace nx::sdk
Definition: interface.h:48
Definition: i_string.h:9
Definition: device_agent.h:13
virtual const char * str() const =0
static constexpr const InterfaceId * makeId(const char(&charArray)[len])
Definition: i_ref_countable.h:76