Sha256: f796806e898254af4bef668ee2748caad1c7188a29904354ce63a561b027d750
Contents?: true
Size: 577 Bytes
Versions: 29
Compression:
Stored size: 577 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: object.rb 66 2005-05-25 11:19:50Z austin $ #++ 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
29 entries across 29 versions & 4 rubygems