TeeChartPHP
[ class tree: TeeChartPHP ] [ index: TeeChartPHP ] [ all elements ]

Source for file FloatRange.php

Documentation is available at FloatRange.php

  1. <?php
  2.  
  3. /**
  4.  * FloatRange class
  5.  *
  6.  * Description:
  7.  *
  8.  * @author
  9.  * @copyright (c) 1995-2010 by Steema Software SL. All Rights Reserved. <info@steema.com>
  10.  * @version 1.0
  11.  * @package TeeChartPHP
  12.  * @link http://www.steema.com
  13.  */
  14.  
  15. class FloatRange {
  16.  
  17.     public $min;
  18.     public $max;
  19.  
  20.     public function FloatRange($min=0$max=0{
  21.         $this->min = $min;
  22.         $this->max = $max;
  23.     }
  24. }
  25. ?>

Documentation generated on Wed, 16 Jun 2010 12:05:24 +0200 by phpDocumentor 1.4.1