. */ include_once 'phing/system/io/Reader.php'; include_once 'phing/filters/ReplaceTokens.php'; // for class Token /** * Abstract class for reading Tokens from a resource * * @author Manuel Holtgewe * @version $Revision: 1.3 $ * @access public * @package phing.system.io */ class TokenReader extends Reader { /** * Constructor */ function __construct() { } /** * Reads a token from the resource and returns it as a * Token object. * * @access public */ function readToken() { } } ?>