----------------------------------------------------------------------------- Input Filter Class -----------------------------------------------------------------------------
| 756 | // Input Filter Class |
| 757 | // ----------------------------------------------------------------------------- |
| 758 | InputFilter::InputFilter(IEventQueue *events) : m_events(events) |
| 759 | { |
| 760 | // do nothing |
| 761 | } |
| 762 | |
| 763 | InputFilter::InputFilter(const InputFilter &x) : m_ruleList(x.m_ruleList), m_events(x.m_events) |
| 764 | { |
nothing calls this directly
no outgoing calls
no test coverage detected