summaryrefslogtreecommitdiffhomepage
path: root/src/Xmobar/Run/Runnable.hs-boot
blob: 0d4b82726767adf1c692639932812ae53881252d (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE ExistentialQuantification  #-}
module Xmobar.Run.Runnable where
import Xmobar.Run.Exec

data Runnable = forall r . (Exec r,Read r,Show r) => Run r

instance Show Runnable
instance Read Runnable
instance Exec Runnable