Your IP : 216.73.217.79


Current Path : /var/www/cesa.co.za/fpdf/
Upload File :
Current File : /var/www/cesa.co.za/fpdf/render.stacking.level.class.php

<?php

class RenderStackingLevel {
  var $_boxes;

  function RenderStackingLevel() {
    $this->set_boxes(array());
  }

  function get_boxes() {
    return $this->_boxes;
  }

  function set_boxes($boxes) {
    $this->_boxes = $boxes;
  }
}

?>