|
TYPO3 API
SVNRelease
|
00001 <?php 00002 00003 /* 00004 * This file is part of SwiftMailer. 00005 * (c) 2004-2009 Chris Corbyn 00006 * 00007 * For the full copyright and license information, please view the LICENSE 00008 * file that was distributed with this source code. 00009 */ 00010 00011 //@require 'Swift/CharacterReader.php'; 00012 00013 /** 00014 * A factory for creating CharacterReaders. 00015 * @package Swift 00016 * @subpackage Encoder 00017 * @author Chris Corbyn 00018 */ 00019 interface Swift_CharacterReaderFactory 00020 { 00021 00022 /** 00023 * Returns a CharacterReader suitable for the charset applied. 00024 * @param string $charset 00025 * @return Swift_CharacterReader 00026 */ 00027 public function getReaderFor($charset); 00028 00029 }
1.8.0