class SMF::ChannelPrefix

Attributes

ch[RW]
channel[RW]
channel=[RW]

Public Class Methods

new(offset, ch) click to toggle source
Calls superclass method SMF::Meta::new
# File lib/smf.rb, line 607
def initialize(offset, ch)
  # ch:0/2**4-1
  super(offset)
  @ch = ch
end

Public Instance Methods

==(other) click to toggle source
Calls superclass method SMF::Event#==
# File lib/smf.rb, line 618
def == (other)
  super && ch == other.ch
end