123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
-
-
-
- require_once dirname(__FILE__) . '/OutputByteStream.php';
- require_once dirname(__FILE__) . '/CharacterReaderFactory.php';
-
-
-
- interface Swift_CharacterStream
- {
-
-
-
- public function setCharacterSet($charset);
-
-
-
- public function setCharacterReaderFactory(
- Swift_CharacterReaderFactory $factory);
-
-
-
- public function importByteStream(Swift_OutputByteStream $os);
-
-
-
- public function importString($string);
-
-
-
- public function read($length);
-
-
-
- public function readBytes($length);
-
-
-
- public function write($chars);
-
-
-
- public function setPointer($charOffset);
-
-
-
- public function flushContents();
-
- }
|