git-svn-id: https://192.168.0.254/svn/Proyectos.MatritumCantat_Web/trunk@2 8e3496fd-7892-4c45-be36-0ff06e9dacc6
27 lines
891 B
PHP
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
|
|
?>
|