/framework/vendor/swift/lib/classes/Swift/CharacterReaderFactory.php

http://zoop.googlecode.com/ · PHP · 29 lines · 5 code · 5 blank · 19 comment · 0 complexity · 60f66a611f693689da29cdff2f4ed666 MD5 · raw file

  1. <?php
  2. /*
  3. * This file is part of SwiftMailer.
  4. * (c) 2004-2009 Chris Corbyn
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. //@require 'Swift/CharacterReader.php';
  10. /**
  11. * A factory for creating CharacterReaders.
  12. * @package Swift
  13. * @subpackage Encoder
  14. * @author Chris Corbyn
  15. */
  16. interface Swift_CharacterReaderFactory
  17. {
  18. /**
  19. * Returns a CharacterReader suitable for the charset applied.
  20. * @param string $charset
  21. * @return Swift_CharacterReader
  22. */
  23. public function getReaderFor($charset);
  24. }