pdfkit/lib/font/table.coffee
2011-07-09 22:57:00 -04:00

14 lines
373 B
CoffeeScript

class Table
constructor: (@file) ->
@tag ?= @constructor.name.replace('Table', '').toLowerCase()
info = @file.directory.tables[@tag]
@exists = !!info
if info
{@offset, @length} = info
@parse @file.contents
parse: ->
# implemented by subclasses
module.exports = Table