Taxonomy.hs revision e9458b1a7a19a63aa4c179f9ab20f4d50681c168
{- |
Module : ./Common/Taxonomy.hs
Description : type for selecting different kinds of taxonomy graphs
Copyright : (c) Klaus Luettich, Uni Bremen 2002-2004
License : GPLv2 or higher, see LICENSE.txt
Maintainer : luecke@informatik.uni-bremen.de
Stability : provisional
Portability : portable
Type for selecting different kinds of taxonomy graphs
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)
data OntoObjectType =
OntoClass | OntoObject | OntoPredicate deriving (Show, Eq)