mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-16 16:29:32 -06:00
15 lines
196 B
Haskell
15 lines
196 B
Haskell
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
|
|
|