<?php
/**
* provides {@link r3_generate_StdOutput} class
*
*
* Copyright (c) 2007 Yahoo! Inc. All rights reserved.
* The copyrights embodied in the content of this file are licensed under the BSD
* open source license
*
* @package r3
* @subpackage generate
*/
/**
* require
*/
require_once("r3/generate/Output.php");
/**
* provides {@link r3_generate_StdOutput} class
*
* @package r3
* @subpackage generate
*/
class r3_generate_NullOutput extends r3_generate_Output {
function doOpen( r3_generate_GenerateContext $context ) {
}
function doOutput( $str ) {
}
function doClose( ) {
}
}
?>