Files
luos/thirdparty/html2ps_pdf/render.stacking.level.class.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

19 lines
246 B
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;
}
}
?>