Banuba SDK
log_record_callback.hpp
Go to the documentation of this file.
1 /// \file
2 /// \addtogroup Utils
3 /// @{
4 ///
5 // AUTOGENERATED FILE - DO NOT MODIFY!
6 // This file was generated by Djinni from utils.djinni
7 
8 #pragma once
9 
10 #include <bnb/utils/defs.hpp>
11 #include <string>
12 
13 namespace bnb { namespace interfaces {
14 
15 enum class severity_level;
16 
17 class BNB_EXPORT log_record_callback {
18 public:
19  virtual ~log_record_callback() {}
20 
21  virtual void on_log_record_callback(severity_level level, const std::string & domain, const std::string & message) = 0;
22 };
23 
24 } } // namespace bnb::interfaces
25 /// @}
26 
bnb::interfaces::log_record_callback
Definition: log_record_callback.hpp:17