Sha256: 11118bdce3f7d4cff0e73ddf305ba211ad2cc3946fc9627f419e70b87fe78764
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.0.2 | lib/ffi/ogr/featurestyle.rb |
ffi-gdal-1.0.1 | lib/ffi/ogr/featurestyle.rb |
ffi-gdal-1.0.0 | lib/ffi/ogr/featurestyle.rb |