BlockAll_InputNode.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "InputNode.hpp"
4 
5 namespace iv
6 {
7 
9 {
10 public:
11  BlockAll_InputNode( Instance * inst ) : InputNode( inst ){}
12  virtual bool input_trigger_process( InputRoot * root, Input::DeviceKey key ){ return false; }
13  virtual bool input_process( InputRoot * root, Input::DeviceKey key, bool & press, bool & real, bool & offspace, bool & queue_refresh ){ return false; }
14 };
15 
16 }