class Sound::Library::Base::Handle

Public Instance Methods

id() click to toggle source
# File lib/sound/device_library/base.rb, line 13
def id
  raise NoMethodError, "Please implement #{self.class}##{__method__} for your Library"
end
pointer() click to toggle source
# File lib/sound/device_library/base.rb, line 10
def pointer
  raise NoMethodError, "Please implement #{self.class}##{__method__} for your Library"
end