1<?php
2// $Header: /cvsroot/html2ps/output._generic.pdf.class.php,v 1.1 2005/12/13 18:24:45 Konstantin Exp $
3
4class OutputDriverGenericPDF extends OutputDriverGeneric {
5  var $pdf_version;
6
7  function OutputDriverGenericPDF() {
8    $this->OutputDriverGeneric();
9    $this->set_pdf_version("1.3");
10  }
11
12  function content_type() { return ContentType::pdf(); }
13
14  function get_pdf_version() {
15    return $this->pdf_version;
16  }
17
18  function reset($media) {
19    OutputDriverGeneric::reset($media);
20  }
21
22  function set_pdf_version($version) {
23    $this->pdf_version = $version;
24  }
25}
26?>