source: branches/version-2_5-dev/data/module/fpdf/filters/FilterLZW_FPDI.php @ 20116

Revision 20116, 891 bytes checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2//
3//  FPDI - Version 1.4
4//
5//    Copyright 2004-2010 Setasign - Jan Slabon
6//
7//  Licensed under the Apache License, Version 2.0 (the "License");
8//  you may not use this file except in compliance with the License.
9//  You may obtain a copy of the License at
10//
11//      http://www.apache.org/licenses/LICENSE-2.0
12//
13//  Unless required by applicable law or agreed to in writing, software
14//  distributed under the License is distributed on an "AS IS" BASIS,
15//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16//  See the License for the specific language governing permissions and
17//  limitations under the License.
18//
19
20require_once('FilterLZW.php');
21
22class FilterLZW_FPDI extends FilterLZW {
23
24    var $fpdi;
25
26    function FilterLZW_FPDI(&$fpdi) {
27        $this->fpdi =& $fpdi;
28    }
29   
30    function error($msg) {
31        $this->fpdi->error($msg);
32    }
33}
Note: See TracBrowser for help on using the repository browser.