[project @ 2002-04-24 16:31:37 by simonmar]
[ghc-base.git] / Data / Generics.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Data.Generics
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  non-portable
10 --
11 -- $Id: Generics.hs,v 1.2 2002/04/24 16:31:39 simonmar Exp $
12 --
13 -- Data types for generic definitions.
14 --
15 -----------------------------------------------------------------------------
16
17 module Data.Generics ( 
18 #ifdef __GLASGOW_HASKELL__
19         module GHC.Base
20 #endif
21  ) where
22
23 import Prelude
24
25 #ifdef __GLASGOW_HASKELL__
26 import GHC.Base ( (:*:)(..), (:+:)(..), Unit(..) )
27 #endif