summaryrefslogtreecommitdiff
path: root/src/GF/System
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2005-12-13 21:09:29 +0000
committerbringert <bringert@cs.chalmers.se>2005-12-13 21:09:29 +0000
commitf996c8b186c6f8bb3ea5c80135e7fb79dc972c22 (patch)
tree5fb4250f12af0b5db8337e4b36aa542345cba503 /src/GF/System
parent5a480fac520db1bab6f1336bee9b2031dbd36cab (diff)
Added explicit type signature to GF.System.NoSpeechInput.recognizeSpeech.
Diffstat (limited to 'src/GF/System')
-rw-r--r--src/GF/System/NoSpeechInput.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/GF/System/NoSpeechInput.hs b/src/GF/System/NoSpeechInput.hs
index 2f967f66f..b9bf0f067 100644
--- a/src/GF/System/NoSpeechInput.hs
+++ b/src/GF/System/NoSpeechInput.hs
@@ -14,4 +14,10 @@
module GF.System.NoSpeechInput (recognizeSpeech) where
+import GF.Infra.Ident (Ident)
+import GF.Infra.Option (Options)
+import GF.Conversion.Types (CGrammar)
+
+recognizeSpeech :: Ident -- ^ Grammar name
+ -> Options -> CGrammar -> IO String
recognizeSpeech = fail "No speech input available"