Sha256: 4e821e93a70385cccbd52b93c8499292e9280c9ae60d524952f3a59238750a59

Contents?: true

Size: 268 Bytes

Versions: 3

Compression:

Stored size: 268 Bytes

Contents

# frozen_string_literal: true

require "ffi"

module FFI
  module CPL
    class XMLNode < FFI::Struct
      layout :type, FFI::CPL::MiniXML::XMLNodeType,
             :value, :string,
             :next, XMLNode.ptr,
             :child, XMLNode.ptr
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ffi-gdal-1.1.0 lib/ffi/cpl/xml_node.rb
ffi-gdal-1.0.4 lib/ffi/cpl/xml_node.rb
ffi-gdal-1.0.3 lib/ffi/cpl/xml_node.rb