-- | Values that have the potential for an output directory.
module System.Build.OutputDirectory(
                                     OutputDirectory,
                                     outdir,
                                   ) where

class OutputDirectory o where
  -- Return the potential output directory for the given value.
  outdir :: o -> Maybe FilePath