class SMF::SetTempo

Attributes

tempo[RW]

Public Class Methods

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

Public Instance Methods

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