{-# LANGUAGE ForeignFunctionInterface, TypeFamilies, MultiParamTypeClasses, FlexibleInstances, TypeSynonymInstances, EmptyDataDecls, ExistentialQuantification, ScopedTypeVariables #-} module GDAL.OGRCurvePolygon.RawType where import Foreign.Ptr import FFICXX.Runtime.Cast data RawOGRCurvePolygon newtype OGRCurvePolygon = OGRCurvePolygon (Ptr RawOGRCurvePolygon) deriving (Eq, Ord, Show) instance () => FPtr (OGRCurvePolygon) where type Raw OGRCurvePolygon = RawOGRCurvePolygon get_fptr (OGRCurvePolygon ptr) = ptr cast_fptr_to_obj = OGRCurvePolygon