File: XCB.hs

package info (click to toggle)
haskell-xcb-types 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 100 kB
  • sloc: haskell: 706; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 628 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- |
-- Module    :  Data.XCB
-- Copyright :  (c) Antoine Latter 2008
-- License   :  BSD3
--
-- Maintainer:  Antoine Latter <aslatter@gmail.com>
-- Stability :  provisional
-- Portability: portable
--
-- The 'Data.XCB' module can parse the contents of the xcb-proto
-- XML files into Haskell data structures.
--
-- Pretty-printers are provided to aid in the debugging - they do
-- not pretty-print to XML, but to a custom human-readable format.
module Data.XCB
    (module Data.XCB.Types
    ,module Data.XCB.FromXML
    ,module Data.XCB.Pretty
    ) where

import Data.XCB.Types
import Data.XCB.FromXML
import Data.XCB.Pretty