Banuba SDK
informer.hpp
Go to the documentation of this file.
1 /// \file
2 /// \addtogroup LicenseUtils
3 /// @{
4 ///
5 // AUTOGENERATED FILE - DO NOT MODIFY!
6 // This file was generated by Djinni from license_utils.djinni
7 
8 #pragma once
9 
10 #include <bnb/utils/defs.hpp>
11 #include <memory>
12 #include <string>
13 
14 namespace bnb { namespace interfaces {
15 
16 class license_manager;
17 
18 class BNB_EXPORT informer {
19 public:
20  virtual ~informer() {}
21 
22  /** Send event to Banuba Servers with custom key and value */
23  static void send_event(const std::shared_ptr<license_manager> & manager, const std::string & key, const std::string & value);
24 };
25 
26 } } // namespace bnb::interfaces
27 /// @}
28 
bnb::interfaces::informer
Definition: informer.hpp:18