diff options
| author | aarne <aarne@cs.chalmers.se> | 2007-12-14 09:25:18 +0000 |
|---|---|---|
| committer | aarne <aarne@cs.chalmers.se> | 2007-12-14 09:25:18 +0000 |
| commit | f85ba4bfa03ec006248a47ff7b1b232e8c1fae08 (patch) | |
| tree | 5bc0e5c590aca434b01589adae42c9c3de06d709 /src/GF/GFCC/CId.hs | |
| parent | ab7d15ab38d81eb44f527c65378c8fd34300dae7 (diff) | |
removed dep. on GFCCRaw
Diffstat (limited to 'src/GF/GFCC/CId.hs')
| -rw-r--r-- | src/GF/GFCC/CId.hs | 14 |
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 + |
