<?php
spl_autoload_register( function($class_name) {
    include_once 'src/'.$class_name.'.php';
});

/**
 * Used to send email and retrieve aggregate data based on a JobID.
 */
class ET_Send extends ET_CUDSupport
{
	/** 
	* Initializes a new instance of the class and sets the obj property of parent.
	*/	
	function __construct()
	{
		$this->obj = "Send";
	}
}
?>
