-- Copyright: 2009 Dino Morelli
-- License: BSD3 (see LICENSE)
-- Author: Dino Morelli <dino@ui3.info>

{-# LANGUAGE FlexibleContexts #-}

module Cargs.Common 
   ( Options (..) )
   where


{- Data type to contain the options
-}

data Options = Options
   { optHelp :: Bool
   , optNoAction :: Bool
   , optVerbose :: Bool
   }

