Sha256: c64a8448f2b069df3adfbaf6f2f3202f3ffae78691befe126d119625a9bd1bab

Contents?: true

Size: 790 Bytes

Versions: 3

Compression:

Stored size: 790 Bytes

Contents

# frozen_string_literal: true

require "ffi"

module FFI
  module OGR
    module Featurestyle
      extend ::FFI::Library
      ffi_lib [::FFI::CURRENT_PROCESS, ::FFI::GDAL.gdal_library_path]

      #------------------------------------------------------------------------
      # Enums
      #------------------------------------------------------------------------
      StyleType = enum :OGRSTypeString,
                       :OGRSTypeDouble,
                       :OGRSTypeInteger,
                       :OGRSTypeBoolean

      #------------------------------------------------------------------------
      # Typedefs
      #------------------------------------------------------------------------
      SType = StyleType
      StyleParamId = FFI::OGR::StyleParam
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ffi-gdal-1.1.0 lib/ffi/ogr/featurestyle.rb
ffi-gdal-1.0.4 lib/ffi/ogr/featurestyle.rb
ffi-gdal-1.0.3 lib/ffi/ogr/featurestyle.rb