require 'rpdf/pdfdictionary' require 'rpdf/document' module RPDF # Document Catalog Object # [PDFRef15 p113] class DocumentCatalog < PDFDictionary def initialize(document) super({ :Type => :Catalog, :Pages => document.pagetree }, document) end end end