From 8bb1df23a83bc0173aec3d3c3a2d8ac350b60e1f Mon Sep 17 00:00:00 2001 From: bringert Date: Tue, 13 Dec 2005 21:09:29 +0000 Subject: [PATCH] Added explicit type signature to GF.System.NoSpeechInput.recognizeSpeech. --- src/GF/System/NoSpeechInput.hs | 6 ++++++ 1 file changed, 6 insertions(+) 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"