sane-ffi/lib/sane/device.rb

12 lines
144 B
Ruby
Raw Normal View History

2011-05-31 18:26:57 +02:00
module Sane
class Device
def initialize(handle)
@handle = handle
end
def close
Sane.close(@handle)
end
end
end