* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://github.com/windowsazure/azure-sdk-for-php */ require dirname(__DIR__) . '/WindowsAzure/WindowsAzure.php'; spl_autoload_register( function($class) { static $classes = null; if ($classes === null) { $classes = array( ___CLASSLIST___ ); } $cn = strtolower($class); if (isset($classes[$cn])) { require ___BASEDIR___$classes[$cn]; } } );