Banuba SDK
camera_poi_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 generated by Djinni from effect_player.djinni
7 
8 #pragma once
9 
10 #include <bnb/utils/defs.hpp>
11 
12 namespace bnb { namespace interfaces {
13 
14 /** Callback to get center of square bounding the face. */
15 class BNB_EXPORT camera_poi_listener {
16 public:
17  virtual ~camera_poi_listener() {}
18 
19  /** @see EffectPlayer.setCameraPoiListener */
20  virtual void on_camera_poi_changed(float x, float y) = 0;
21 };
22 
23 } } // namespace bnb::interfaces
24 /// @}
25 
bnb::interfaces::camera_poi_listener::on_camera_poi_changed
virtual void on_camera_poi_changed(float x, float y)=0
bnb::interfaces::camera_poi_listener
Callback to get center of square bounding the face.
Definition: camera_poi_listener.hpp:15