Files
luos/gulliver/thirdparty/html2ps_pdf/ps.image.encoder.stream.inc.php

51 lines
657 B
PHP
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* @author Konstantin Bournayev
* @version 1.0
* @created 24-mb-2006 20:56:23
*/
class PSImageEncoderStream
{
var $last_image_id;
// Generates new unique image identifier
//
// @return generated identifier
//
function generate_id()
{
$this->last_image_id ++;
return $this->last_image_id;
}
}
/**
* @created 24-mb-2006 20:56:23
* @author Konstantin Bournayev
* @version 1.0
* @updated 24-mb-2006 21:19:35
*/
class PSImageEncoder
{
var $last_image_id;
function __construct()
{
}
/**
* Generates new unique image identifier
* @return generated identifier
*/
function generate_id()
{
}
}
?>