summaryrefslogtreecommitdiff
path: root/src/GF/CF
diff options
context:
space:
mode:
authorpeb <unknown>2005-02-04 09:10:28 +0000
committerpeb <unknown>2005-02-04 09:10:28 +0000
commit6381f3a9987f44c4c827ab2c9033519f191a2cce (patch)
tree003cbe139a73453441ffaff8e3d9546ef3aac2b0 /src/GF/CF
parentb2a6b1a176e1f707d3b14a9b35866d7a01406f23 (diff)
"Committed_by_peb"
Diffstat (limited to 'src/GF/CF')
-rw-r--r--src/GF/CF/CF.hs14
-rw-r--r--src/GF/CF/CFIdent.hs14
-rw-r--r--src/GF/CF/CFtoGrammar.hs14
-rw-r--r--src/GF/CF/CFtoSRG.hs14
-rw-r--r--src/GF/CF/CanonToCF.hs14
-rw-r--r--src/GF/CF/ChartParser.hs14
-rw-r--r--src/GF/CF/EBNF.hs14
-rw-r--r--src/GF/CF/PPrCF.hs14
-rw-r--r--src/GF/CF/PrLBNF.hs14
-rw-r--r--src/GF/CF/Profile.hs14
10 files changed, 140 insertions, 0 deletions
diff --git a/src/GF/CF/CF.hs b/src/GF/CF/CF.hs
index 7c0013548..525ed2100 100644
--- a/src/GF/CF/CF.hs
+++ b/src/GF/CF/CF.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module CF where
import Operations
diff --git a/src/GF/CF/CFIdent.hs b/src/GF/CF/CFIdent.hs
index 8e45902cb..ab93c7389 100644
--- a/src/GF/CF/CFIdent.hs
+++ b/src/GF/CF/CFIdent.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module CFIdent where
import Operations
diff --git a/src/GF/CF/CFtoGrammar.hs b/src/GF/CF/CFtoGrammar.hs
index b052ee88e..8dcc66759 100644
--- a/src/GF/CF/CFtoGrammar.hs
+++ b/src/GF/CF/CFtoGrammar.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module CFtoGrammar where
import Ident
diff --git a/src/GF/CF/CFtoSRG.hs b/src/GF/CF/CFtoSRG.hs
index 899fdcfe5..4437417e8 100644
--- a/src/GF/CF/CFtoSRG.hs
+++ b/src/GF/CF/CFtoSRG.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{-
**************************************************************
GF Module
diff --git a/src/GF/CF/CanonToCF.hs b/src/GF/CF/CanonToCF.hs
index ff8ec32e2..a343a2473 100644
--- a/src/GF/CF/CanonToCF.hs
+++ b/src/GF/CF/CanonToCF.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module CanonToCF where
import Tracing -- peb 8/6-04
diff --git a/src/GF/CF/ChartParser.hs b/src/GF/CF/ChartParser.hs
index a66155662..26b2f31bd 100644
--- a/src/GF/CF/ChartParser.hs
+++ b/src/GF/CF/ChartParser.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
{- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Filename: ChartParser.hs
Author: Peter Ljunglöf
diff --git a/src/GF/CF/EBNF.hs b/src/GF/CF/EBNF.hs
index 10b73c174..99d5f8b30 100644
--- a/src/GF/CF/EBNF.hs
+++ b/src/GF/CF/EBNF.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module EBNF where
import Operations
diff --git a/src/GF/CF/PPrCF.hs b/src/GF/CF/PPrCF.hs
index cdeab188b..53e59270f 100644
--- a/src/GF/CF/PPrCF.hs
+++ b/src/GF/CF/PPrCF.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module PPrCF where
import Operations
diff --git a/src/GF/CF/PrLBNF.hs b/src/GF/CF/PrLBNF.hs
index a0b33de87..8b509fe7b 100644
--- a/src/GF/CF/PrLBNF.hs
+++ b/src/GF/CF/PrLBNF.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module PrLBNF (prLBNF,prBNF) where
import CF
diff --git a/src/GF/CF/Profile.hs b/src/GF/CF/Profile.hs
index 5c73bb594..5d06eee6a 100644
--- a/src/GF/CF/Profile.hs
+++ b/src/GF/CF/Profile.hs
@@ -1,3 +1,17 @@
+----------------------------------------------------------------------
+-- |
+-- Module : (Module)
+-- Maintainer : (Maintainer)
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date $
+-- > CVS $Author $
+-- > CVS $Revision $
+--
+-- (Description of the module)
+-----------------------------------------------------------------------------
+
module Profile (postParse) where
import AbsGFC