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

19 lines
275 B
PHP

<?php
class RenderQueue {
var $_root_context;
function RenderQueue() {
$this->set_root_context(null);
}
function get_root_context() {
return $this->_root_context;
}
function set_root_context(&$context) {
$this->_root_context =& $context;
}
}
?>