1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
<?php
/*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the MIT Open Source License, for details please see license.txt or the website
* http://www.opensource.org/licenses/mit-license.php
*
*/
// Grab the file name and save the output
$_file = $_globals['prefix'] . "Types.cpp";
$_bytes = file_put_contents( ($_globals['target_dir'] . $_globals['dom_dir'] . 'src/' . $_file), applyTemplate( 'TYPES_CPP', $bag ) );
//if ( $_bytes > 0 ) { print "Wrote $_bytes bytes to file '$_file'\n"; }
?>
|