Banuba SDK
hint_listener.hpp
Go to the documentation of this file.
1 /// \file
2 /// \addtogroup EffectPlayer
3 /// @{
4 ///
5 // AUTOGENERATED FILE - DO NOT MODIFY!
6 // This file was generated by Djinni from effect_player.djinni
7 
8 #pragma once
9 
10 #include <bnb/utils/defs.hpp>
11 #include <string>
12 
13 namespace bnb { namespace interfaces {
14 
15 /**
16  * Callback to receive "hints" (e.g. "Open mouth" from effect).
17  * Display them on UI.
18  */
19 class BNB_EXPORT hint_listener {
20 public:
21  virtual ~hint_listener() {}
22 
23  virtual void on_hint(const std::string & hint_message) = 0;
24 };
25 
26 } } // namespace bnb::interfaces
27 /// @}
28 
bnb::interfaces::hint_listener
Callback to receive "hints" (e.g.
Definition: hint_listener.hpp:19