InputBindingListener.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace iv
6 {
7 
8 class InputBindingSystem;
9 
11 {
12 public:
15 
16  Instance * instance() const;
17 
21  virtual void on_binding_changed() = 0;
22 
23 private:
24  Instance * inst;
25  InputBindingSystem * ibs;
26 };
27 
28 }