* @link http://www.engageinteractive.com/dom_xmlrpc/ DOM XML-RPC Home Page * DOM XML-RPC is Free Software **/ /** * Wraps a PHP associative array as an XML-RPC struct * * @package dom-xmlrpc * @author John Heinstein */ class dom_xmlrpc_struct { /** @var object A numeric associative array holding the data */ var $numericAssociativeArray; /** * Constructor * @param object A reference to the associative array */ function dom_xmlrpc_struct($numericAssociativeArray) { $this->numericAssociativeArray = $numericAssociativeArray; } //dom_xmlrpc_struct /** * Returns the wrapped associative array * @return array A reference to the associative array */ function getStruct() { return $this->numericAssociativeArray; } //getStruct } //dom_xmlrpc_struct ?>