X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fblock%2Fclass_Block.php;h=32cad9101d7714c66024516efa622dccb615b8da;hp=f00e973cc00e688490a7deb657b9380634d38a56;hb=a1a6fe495d2e61dee317af1b45ee6821eb0027e5;hpb=202f8c1c1d46d1292918b7110547952446a53391 diff --git a/inc/classes/interfaces/block/class_Block.php b/inc/classes/interfaces/block/class_Block.php index f00e973c..32cad910 100644 --- a/inc/classes/interfaces/block/class_Block.php +++ b/inc/classes/interfaces/block/class_Block.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -36,16 +36,6 @@ interface Block extends FrameworkInterface { */ function flushFileHeader (); - /** - * Close a file source and set it's instance to null and the file name - * to empty. - * - * @return void - * @throws NullPointerException If the file pointer instance is not set by setPointer() - * @throws InvalidResourceException If there is being set - */ - function closeFile (); - /** * Determines whether the EOF has been reached * @@ -113,6 +103,13 @@ interface Block extends FrameworkInterface { * @return $totalEntries Total entries in this file */ function getCounter (); + + /** + * "Getter" for file size + * + * @return $fileSize Size of currently loaded file + */ + function getFileSize (); } // [EOF]