ddc-war-0.2.1.1: DDC/War/Create/Way.hs
module DDC.War.Create.Way
(Way(..))
where
-- | A way to build the test.
-- This holds extra options to pass to the program.
data Way
= Way
{ wayName :: String
, wayOptsComp :: [String]
, wayOptsRun :: [String] }
deriving (Eq, Ord, Show)