monadIO: export Control.Monad.Trans too
[harpy.git] / Harpy.hs
1 --------------------------------------------------------------------------
2 -- |
3 -- Module:      Harpy
4 -- Copyright:   (c) 2006-2007 Martin Grabmueller and Dirk Kleeblatt
5 -- License:     GPL
6 -- 
7 -- Maintainer:  {magr,klee}@cs.tu-berlin.de
8 -- Stability:   provisional
9 -- Portability: portable
10 --
11 -- Harpy is a library for run-time code generation of x86 machine code.
12 --
13 -- This is a convenience module which re-exports the modules which are
14 -- essential for using Harpy.
15 ----------------------------------------------------------------------------
16 module Harpy(module Harpy.CodeGenMonad,
17              module Harpy.Call,
18              module Harpy.X86Assembler,
19              module Control.Monad.Trans) where
20
21 import Harpy.CodeGenMonad
22 import Harpy.Call
23 import Harpy.X86Assembler
24 import Control.Monad.Trans