class SMF::ChannelPressure

Attributes

val[RW]
value[RW]
value=[RW]

Public Class Methods

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

Public Instance Methods

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