module Libvirt module Ruby module StorageVol extend Libvirt::Ruby::Util extend FFI::Library begin ffi_lib "libvirt.so.0" rescue LoadError raise Libvirt::Ruby::Exceptions::MissingLib end def self.klass "virStorageVol" end end end end