A class representing a file outside the current PDF file.
Creates a new external file specification.
dos |
The Windows path to this file. |
mac |
The MacOS path to this file. |
unix |
The UNIX path to this file. |
# File lib/origami/file.rb, line 193 def initialize(dos, mac = "", unix = "") if not mac.empty? or not unix.empty? super(:DOS => Filename.DOS(dos), :Mac => Filename.Mac(mac), :Unix => Filename.Unix(unix)) else super(:F => dos) end end
Generated with the Darkfish Rdoc Generator 2.