summaryrefslogtreecommitdiff
path: root/src/GF/Data
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/Data')
-rw-r--r--src/GF/Data/ErrM.hs14
-rw-r--r--src/GF/Data/Glue.hs14
-rw-r--r--src/GF/Data/Map.hs14
-rw-r--r--src/GF/Data/Operations.hs14
-rw-r--r--src/GF/Data/OrdMap2.hs14
-rw-r--r--src/GF/Data/OrdSet.hs14
-rw-r--r--src/GF/Data/Parsers.hs14
-rw-r--r--src/GF/Data/RedBlack.hs14
-rw-r--r--src/GF/Data/SharedString.hs14
-rw-r--r--src/GF/Data/Str.hs14
-rw-r--r--src/GF/Data/Trie.hs14
-rw-r--r--src/GF/Data/Trie2.hs14
-rw-r--r--src/GF/Data/Zipper.hs14
13 files changed, 182 insertions, 0 deletions
diff --git a/src/GF/Data/ErrM.hs b/src/GF/Data/ErrM.hs
index eb2078718..fe9796d7f 100644
--- a/src/GF/Data/ErrM.hs
+++ b/src/GF/Data/ErrM.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module ErrM (
module Operations
) where
diff --git a/src/GF/Data/Glue.hs b/src/GF/Data/Glue.hs
index a533a6c2f..cfbe0e746 100644
--- a/src/GF/Data/Glue.hs
+++ b/src/GF/Data/Glue.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Glue where
import Trie2
diff --git a/src/GF/Data/Map.hs b/src/GF/Data/Map.hs
index fdaad857c..60ba69052 100644
--- a/src/GF/Data/Map.hs
+++ b/src/GF/Data/Map.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{-
**************************************************************
* Filename : Map.hs *
diff --git a/src/GF/Data/Operations.hs b/src/GF/Data/Operations.hs
index 003f1746f..214509142 100644
--- a/src/GF/Data/Operations.hs
+++ b/src/GF/Data/Operations.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Operations where
import Char (isSpace, toUpper, isSpace, isDigit)
diff --git a/src/GF/Data/OrdMap2.hs b/src/GF/Data/OrdMap2.hs
index b4f9245fb..213f40b52 100644
--- a/src/GF/Data/OrdMap2.hs
+++ b/src/GF/Data/OrdMap2.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Filename: OrdMap2.hs
Author: Peter Ljunglöf
diff --git a/src/GF/Data/OrdSet.hs b/src/GF/Data/OrdSet.hs
index 8761b2176..79393a892 100644
--- a/src/GF/Data/OrdSet.hs
+++ b/src/GF/Data/OrdSet.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Filename: OrdSet.hs
Author: Peter Ljunglöf
diff --git a/src/GF/Data/Parsers.hs b/src/GF/Data/Parsers.hs
index 165d0f4e7..234ddff90 100644
--- a/src/GF/Data/Parsers.hs
+++ b/src/GF/Data/Parsers.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Parsers where
import Operations
diff --git a/src/GF/Data/RedBlack.hs b/src/GF/Data/RedBlack.hs
index 4ee1f92a6..21e2f5586 100644
--- a/src/GF/Data/RedBlack.hs
+++ b/src/GF/Data/RedBlack.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{-
**************************************************************
* Filename : RedBlack.hs *
diff --git a/src/GF/Data/SharedString.hs b/src/GF/Data/SharedString.hs
index f03f6f469..55a676015 100644
--- a/src/GF/Data/SharedString.hs
+++ b/src/GF/Data/SharedString.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module SharedString (shareString) where
import Data.HashTable as H
diff --git a/src/GF/Data/Str.hs b/src/GF/Data/Str.hs
index 6433e5355..138c39f26 100644
--- a/src/GF/Data/Str.hs
+++ b/src/GF/Data/Str.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Str (
Str (..), Tok (..), --- constructors needed in PrGrammar
str2strings, str2allStrings, str, sstr, sstrV,
diff --git a/src/GF/Data/Trie.hs b/src/GF/Data/Trie.hs
index 724df0761..7cfe51fa2 100644
--- a/src/GF/Data/Trie.hs
+++ b/src/GF/Data/Trie.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{-
**************************************************************
* Filename : Trie.hs *
diff --git a/src/GF/Data/Trie2.hs b/src/GF/Data/Trie2.hs
index 2ccc05a9f..d4f6a59b4 100644
--- a/src/GF/Data/Trie2.hs
+++ b/src/GF/Data/Trie2.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{-
**************************************************************
* Author : Markus Forsberg *
diff --git a/src/GF/Data/Zipper.hs b/src/GF/Data/Zipper.hs
index e63743b06..31174b71e 100644
--- a/src/GF/Data/Zipper.hs
+++ b/src/GF/Data/Zipper.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Zipper where
import Operations