19 lines
246 B
PHP
Executable File
19 lines
246 B
PHP
Executable File
<?php
|
|
|
|
class RenderStackingLevel {
|
|
var $_boxes;
|
|
|
|
function RenderStackingLevel() {
|
|
$this->set_boxes(array());
|
|
}
|
|
|
|
function get_boxes() {
|
|
return $this->_boxes;
|
|
}
|
|
|
|
function set_boxes($boxes) {
|
|
$this->_boxes = $boxes;
|
|
}
|
|
}
|
|
|
|
?>
|