This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/includes/domit/dom_xmlrpc_object.php
2012-09-18 20:02:43 +00:00

27 lines
891 B
PHP

<?php
//*******************************************************************
//dom_xmlrpc_object wraps a native PHP object
//*******************************************************************
//by John Heinstein
//johnkarl@nbnet.nb.ca
//*******************************************************************
//Version 0.1
//copyright 2004 Engage Interactive
//http://www.engageinteractive.com/dom_xmlrpc/
//All rights reserved
//*******************************************************************
//Licensed under the GNU General Public License (GPL)
//http://www.gnu.org/licenses/gpl-2.0.html
//*******************************************************************
class dom_xmlrpc_object {
var $myObject;
function dom_xmlrpc_object($myObject) {
$this->myObject =& $myObject;
} //dom_xmlrpc_object
function &getObject() {
return $this->myObject;
} //getObject
} //dom_xmlrpc_object
?>