Class: MIDIMessage::Process::BandPassFilter

Inherits:
Filter
  • Object
show all
Defined in:
lib/midi-message/process/filter.rb

Instance Attribute Summary

Attributes inherited from Filter

#bandwidth, #property, #reject

Instance Method Summary collapse

Methods inherited from Filter

#process_single

Methods included from Processor

included, #process

Constructor Details

#initialize(prop, accept_range, options = {}) ⇒ BandPassFilter

Returns a new instance of BandPassFilter.



43
44
45
46
# File 'lib/midi-message/process/filter.rb', line 43

def initialize(prop, accept_range, options = {})
  options[:reject] = false
  super(prop, accept_range, options)
end