1<?php 2 3 4/** 5 * @author Konstantin Bournayev 6 * @version 1.0 7 * @created 24-���-2006 20:56:23 8 */ 9class PSImageEncoderStream 10{ 11 var $last_image_id; 12 13 // Generates new unique image identifier 14 // 15 // @return generated identifier 16 // 17 function generate_id() 18 { 19 $this->last_image_id ++; 20 return $this->last_image_id; 21 } 22 23} 24 25/** 26 * @created 24-���-2006 20:56:23 27 * @author Konstantin Bournayev 28 * @version 1.0 29 * @updated 24-���-2006 21:19:35 30 */ 31class PSImageEncoder 32{ 33 34 var $last_image_id; 35 36 function __construct() 37 { 38 } 39 40 41 42 /** 43 * Generates new unique image identifier 44 * @return generated identifier 45 */ 46 function generate_id() 47 { 48 } 49 50} 51?>