Sha256: 272ffeb9923599912909b8604910d567493d86c73662635b012a9fcc1da396b4
Contents?: true
Size: 745 Bytes
Versions: 9
Compression:
Stored size: 745 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
9 entries across 9 versions & 1 rubygems