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