Sha256: 4dcc9f98be8a2bd57c7f52058a75141019df9b4abe3c259ffdd10812cd470387
Contents?: true
Size: 583 Bytes
Versions: 9
Compression:
Stored size: 583 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,v 1.3 2005/05/25 11:19:50 austin Exp $ #++ 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
9 entries across 9 versions & 2 rubygems