aboutsummaryrefslogtreecommitdiffstats
path: root/StackSet.hs
diff options
context:
space:
mode:
Diffstat (limited to 'StackSet.hs')
-rw-r--r--StackSet.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/StackSet.hs b/StackSet.hs
index 94e438b..f5d04db 100644
--- a/StackSet.hs
+++ b/StackSet.hs
@@ -74,7 +74,11 @@
-- needs to be well defined. Particular in relation to 'insert' and
-- 'delete'.
--
-module StackSet where {- all top level functions -}
+module StackSet (
+ StackSet(..), Workspace(..), Stack(..),
+ new, view, lookupWorkspace, peek, index, focusLeft, focusRight,
+ focusWindow, member, findIndex, insertLeft, delete, swap, shift
+ ) where
import qualified Data.Map as M
import Data.Maybe (listToMaybe)