summaryrefslogtreecommitdiff
path: root/src/GF/GFCC/CId.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GF/GFCC/CId.hs')
-rw-r--r--src/GF/GFCC/CId.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/GF/GFCC/CId.hs b/src/GF/GFCC/CId.hs
new file mode 100644
index 000000000..e4efa98ba
--- /dev/null
+++ b/src/GF/GFCC/CId.hs
@@ -0,0 +1,14 @@
+module GF.GFCC.CId (
+ module GF.GFCC.Raw.AbsGFCCRaw,
+ prCId,
+ cId
+ ) where
+
+import GF.GFCC.Raw.AbsGFCCRaw (CId(CId))
+
+prCId :: CId -> String
+prCId (CId s) = s
+
+cId :: String -> CId
+cId = CId
+