blob: 1cd1688962563beb860e0a4fbf7a6b96ce5d3a7c (
plain)
| 1
2
3
4
5
6
7
8
 | {-# LANGUAGE ExistentialQuantification  #-}
module Xmobar.Run.Runnable where
import Xmobar.Run.Exec
data Runnable = forall r . (Exec r,Read r,Show r) => Run r
instance Read Runnable
instance Exec Runnable
 |