Class Origami::FDF
In: sources/parser/fdf.rb
Parent: Object

Methods

new  

Attributes

bin  [RW] 
body  [RW] 
filename  [RW] 
 TODO:

 add a real parser. This class is currently useless except to
 create empty FDF and add some items, not to parse old ones.
header  [RW] 
trailer  [RW] 
xreftable  [RW] 

Public Class methods

[Source]

    # File sources/parser/fdf.rb, line 65
65:     def initialize(hdr = "%FDF-1.2", bin="%\x25\xe3\xcf\xd3" body = [], xref = [], trailer="") 
66:       @header = hdr
67:       @bin = bin
68:       @body = body
69:       @xreftable = xref
70:       @trailer = traier
71:     end

[Validate]