class MIDI::Clock

Public Class Methods

new(delta_time = 0) click to toggle source
Calls superclass method MIDI::Realtime::new
# File lib/midilib/event.rb, line 361
def initialize(delta_time = 0)
  super(CLOCK, delta_time)
end

Public Instance Methods

to_s() click to toggle source
Calls superclass method MIDI::Realtime#to_s
# File lib/midilib/event.rb, line 365
def to_s
  super << 'clock'
end