sane-ffi/lib/sane/device.rb
2011-05-31 18:26:57 +02:00

11 lines
144 B
Ruby

module Sane
class Device
def initialize(handle)
@handle = handle
end
def close
Sane.close(@handle)
end
end
end