Taxonomy.hs revision b4fbc96e05117839ca409f5f20f97b3ac872d1ed
{- |
Module : $Header$
Copyright : (c) Klaus L�ttich, Uni Bremen 2002-2004
Licence : similar to LGPL, see HetCATS/LICENCE.txt or LIZENZ.txt
Maintainer : luettich@tzi.de
Stability : provisional
Portability : portable
This module only provides a small type for selecting different kinds
of taxonomy graphs.
-}
module Common.Taxonomy where
data TaxoGraphKind = KSubsort | KConcept
deriving (Show,Enum,Eq)