DefaultBinder.hpp
Go to the documentation of this file.
1 #pragma once
2 
4 #include "../Defs.hpp"
5 
6 namespace iv
7 {
8 
12 class DefaultBinder : public InputBinder
13 {
14 public:
16 
17  DefaultBinder( Instance * inst ) :
18  InputBinder( inst ),
19  cm( inst, this, "DefaultBinder" )
20  {
21  this->cm.inherits( this->InputBinder::cm );
22 
23  //
28 
32  }
33 };
34 
35 
36 }