{-# LANGUAGE CPP #-} #if __GLASGOW_HASKELL__ >= 704 {-# LANGUAGE Safe #-} #endif -------------------------------------------------------------------------------- -- | -- Module : System.USB -- Copyright : (c) 2009–2014 Bas van Dijk -- License : BSD-style (see the file LICENSE) -- Maintainer : Bas van Dijk -- -- A convenience module which re-exports all the important modules. -- -------------------------------------------------------------------------------- module System.USB ( module System.USB.Initialization , module System.USB.Misc , module System.USB.Enumeration , module System.USB.DeviceHandling , module System.USB.Descriptors , module System.USB.IO #ifdef HAS_EVENT_MANAGER , module System.USB.IO.Transfers #endif , module System.USB.Exceptions ) where import System.USB.Initialization import System.USB.Misc import System.USB.Enumeration import System.USB.DeviceHandling import System.USB.Descriptors import System.USB.IO #ifdef HAS_EVENT_MANAGER import System.USB.IO.Transfers #endif import System.USB.Exceptions