TYPO3 API  SVNRelease
HeaderEncoder.php
Go to the documentation of this file.
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/Encoder.php';
00012 
00013 /**
00014  * Interface for all Header Encoding schemes.
00015  * @package Swift
00016  * @subpackage Mime
00017  * @author Chris Corbyn
00018  */
00019 interface Swift_Mime_HeaderEncoder extends Swift_Encoder
00020 {
00021 
00022   /**
00023    * Get the MIME name of this content encoding scheme.
00024    * @return string
00025    */
00026   public function getName();
00027 
00028 }