Core  3.2
PHP API documentation
 All Data Structures Namespaces Files Functions Variables Pages
Class.Out.php
Go to the documentation of this file.
1 <?php
2 /*
3  * @author Anakeen
4  * @package FDL
5 */
6 /**
7  * Generated Header (not documented yet)
8  *
9  * @author Anakeen
10  * @version $Id: Class.Out.php,v 1.2 2003/08/18 15:46:42 eric Exp $
11  * @package FDL
12  * @subpackage CORE
13  */
14 /**
15  */
16 // --------------------------------------------------------------------------
17 // $Id: Class.Out.php,v 1.2 2003/08/18 15:46:42 eric Exp $
18 // anakeen 1999 - marc.claverie@anakeen.com
19 // --------------------------------------------------------------------------
20 //
21 // $Log: Class.Out.php,v $
22 // Revision 1.2 2003/08/18 15:46:42 eric
23 // phpdoc
24 //
25 // Revision 1.1 2002/01/08 12:41:34 eric
26 // first
27 //
28 // Revision 1.1 2001/02/10 09:45:51 yannick
29 // Ajout de vieilles classes
30 //
31 // Revision 1.2 1999/12/01 20:42:39 marc
32 // Version 1.0 qui semble marcher
33 //
34 // Revision 1.1 1999/12/01 20:22:19 marc
35 // Creation
36 //
37 // --------------------------------------------------------------------------
39 
40 class Out
41 {
42 
43  var $stream;
44  var $cr;
45 
46  function Out($rt = 0)
47  {
48  $this->stream = "";
49  if ($rt) $this->cr = "\n";
50  else $this->cr = "";
51  }
52 
53  function Cat($string)
54  {
55  $this->stream = $this->stream . $string . $this->cr;
56  }
57  function Reset()
58  {
59  $this->stream = "";
60  }
61 
62  function Flush()
63  {
64  return ($this->stream);
65  }
66 }
67 ?>
Out($rt=0)
Definition: Class.Out.php:46
$CLASS_OUT_PHP
Definition: Class.Out.php:38
Cat($string)
Definition: Class.Out.php:53
Reset()
Definition: Class.Out.php:57
Flush()
Definition: Class.Out.php:62
$stream
Definition: Class.Out.php:43
← centre documentaire © anakeen