Banuba SDK
Loading...
Searching...
No Matches
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
13namespace bnb { namespace interfaces {
14
15enum class severity_level;
16
17class BNB_EXPORT log_record_callback {
18public:
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