Class: Sound::Library::Base::Handle

Inherits:
Object
  • Object
show all
Defined in:
lib/sound/device_library/base.rb

Instance Method Summary collapse

Instance Method Details

#idObject

Raises:

  • (NoMethodError)


13
14
15
# File 'lib/sound/device_library/base.rb', line 13

def id
  raise NoMethodError, "Please implement #{self.class}##{__method__} for your Library"
end

#pointerObject

Raises:

  • (NoMethodError)


10
11
12
# File 'lib/sound/device_library/base.rb', line 10

def pointer
  raise NoMethodError, "Please implement #{self.class}##{__method__} for your Library"
end