Sha256: 46abb4ed9b668fe146be9265b00579b311772062020e34197e66283528a00056
Contents?: true
Size: 534 Bytes
Versions: 7
Compression:
Stored size: 534 Bytes
Contents
#-- # PDF::Writer for Ruby. # http://rubyforge.org/projects/ruby-pdf/ # Copyright 2003 - 2005 Austin Ziegler. # # Licensed under a MIT-style licence. See LICENCE in the main distribution # for full licensing information. # # $Id$ #++ class PDF::Writer::Object def initialize(parent) @parent = parent @oid = @parent.__send__(:generate_id) @parent.objects << self end attr_reader :oid end class PDF::Writer::External < PDF::Writer::Object; end class PDF::Writer::Complex < PDF::Writer::Object; end
Version data entries
7 entries across 7 versions & 3 rubygems