]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/io/pointer/io/class_InputOutputPointer.php
Introduced interface Pointer, valid() is now used.
[core.git] / inc / classes / interfaces / io / pointer / io / class_InputOutputPointer.php
index b901c1b472819c6c01dc1b0f7088e9a1ad9ac2c6..93846ff7311813ecb80372d66a6b8c663b0c4256 100644 (file)
@@ -25,25 +25,9 @@ interface InputOutputPointer extends InputPointer, OutputPointer {
        /**
         * Rewinds to the beginning of the file
         *
-        * @return      $status         Status of this operation
+        * @return      $status         Status of this operation
         */
        function rewind ();
-
-       /**
-        * Seeks to given position
-        *
-        * @param       $seekPosition   Seek position in file
-        * @param       $whence                 "Seek mode" (see http://de.php.net/fseek)
-        * @return      $tatus                  Status of this operation
-        */
-       function seek ($seekPosition, $whence = SEEK_SET);
-
-       /**
-        * "Getter" for seek position
-        *
-        * @return      $seekPosition   Seek position
-        */
-       function getSeekPosition ();
 }
 
 // [EOF]