nx_metadata_sdk  1.0
Metadata SDK
i_action_response.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 {
8 namespace sdk {
9 
14 class IActionResponse: public Interface<IActionResponse>
15 {
16 public:
17  static auto interfaceId() { return makeId("nx::sdk::IActionResponse"); }
18 
23  virtual const char* actionUrl() const = 0;
24 
29  virtual const char* messageToUser() const = 0;
30 };
32 
33 } // namespace sdk
34 } // namespace nx
Definition: interface.h:49
virtual const char * actionUrl() const =0
virtual const char * messageToUser() const =0
Definition: apple_utils.h:6
Definition: i_action_response.h:14
static constexpr const InterfaceId * makeId(const char(&charArray)[len])
Definition: i_ref_countable.h:77