packages feed

AutoForms-0.4.0: src/Examples/GhciGui/ECOptions.hs

{-# OPTIONS -fallow-undecidable-instances #-}
{-# OPTIONS -fglasgow-exts #-}
{-# OPTIONS -fth #-}

-- FIXME: Change OPTIONS pragmas to LANGUAGE pragmas

module ECOptions where

import Options
import Graphics.UI.AF.WxFormAll

$(derive [''Options])

-- Below is to satisfy GHC 6.6. It is not neccesary in GHC 6.8.
instance ECCreator Options


{- Old trash

{-# OPTIONS -fno-warn-missing-signatures #-}
{-# OPTIONS -fno-warn-unused-matches #-}
{-# OPTIONS -fno-warn-incomplete-patterns #-}

-- The last three -fno-warn-... are because of the $(derive) below.
-}