summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Support.hs
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2014-11-10 15:23:02 +0000
committerhallgren <hallgren@chalmers.se>2014-11-10 15:23:02 +0000
commit33571ba44f2a42502722a3b025b448efe1f0ab88 (patch)
tree7a34727f7cf11a0bb9e1b2cee1a0b785ae71240c /src/compiler/GF/Support.hs
parentcabafd68a66c05478ecdd301ed9cf1564c57a3c5 (diff)
Some work to improve the structure of the haddock documenation
Diffstat (limited to 'src/compiler/GF/Support.hs')
-rw-r--r--src/compiler/GF/Support.hs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/compiler/GF/Support.hs b/src/compiler/GF/Support.hs
new file mode 100644
index 000000000..a4baf63c9
--- /dev/null
+++ b/src/compiler/GF/Support.hs
@@ -0,0 +1,17 @@
+module GF.Support(
+ -- * Supporting infrastructure and system utilities
+ module GF.Infra.Location,
+ module GF.Infra.Option,
+ module GF.Data.Operations,
+ module GF.Infra.UseIO,
+ module GF.System.Console,
+ -- ** Binary serialisation
+ Binary,encode,decode,encodeFile,decodeFile
+ ) where
+
+import GF.Infra.Location
+import GF.Data.Operations
+import GF.Infra.Option
+import GF.Infra.UseIO
+import GF.System.Console
+import Data.Binary