hp2pretty-0.2: src/Types.hs
module Types where
import Data.ByteString.Char8 (ByteString)
data Header =
Header
{ hJob :: ByteString
, hDate :: ByteString
, hSampleUnit :: ByteString
, hValueUnit :: ByteString
, hSampleRange :: (Double, Double)
, hValueRange :: (Double, Double)
, hCount :: Int
}