packages feed

lhs2TeX-hl-0.1.2.0: src/Literate/SimpleInfo.hs

module Literate.SimpleInfo where

data SimpleInfo = SimpleInfo {
  fileName        :: String,
  moduleName      :: String,
  types           :: [String],
  constructors    :: [String],
  functions       :: [String],
  operators       :: [String],
  classes         :: [String]

  
} deriving Show

simpleinfo = SimpleInfo{ fileName = ""
                       , moduleName = ""
                       , types = []
                       , constructors = []
                       , functions = []
                       , operators = []
                       , classes   = []
                       }