module Text.PrettyPrint.Class ( Pretty(pretty) ) where import Text.PrettyPrint (Doc) class Pretty a where pretty :: a -> Doc