Utils.hs revision 1d9dc6dfc2d65f34926ea78f108ace72a209010c
{-# OPTIONS -cpp #-}
{- |
Module : $Header$
Description : cpp choice between "GUI.HTkUtils" and "GUI.ConsoleUtils"
Copyright : (c) C. Maeder, Uni Bremen 2002-2005
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : Christian.Maeder@dfki.de
Stability : provisional
Portability : non-portable (cpp)
Utilities on top of HTk or System.IO
-}
module GUI.Utils (listBox, createTextSaveDisplay, askFileNameAndSave) where
#ifdef UNI_PACKAGE
import GUI.HTkUtils (listBox, createTextSaveDisplay, askFileNameAndSave)
#else
import GUI.ConsoleUtils (listBox, createTextSaveDisplay, askFileNameAndSave)
#endif