class Origami::ExternalFile


A class representing a file outside the current PDF file.

def initialize(dos, mac: "", unix: "")


_unix_:: The UNIX path to this file.
_mac_:: The MacOS path to this file.
_dos_:: The Windows path to this file.
Creates a new external file specification.
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