} // END - if
// Read file header
- $this->getBlockInstance()->readFileHeader();
+ $this->readFileHeader()
// The above method does already check the header
$isInitialized = TRUE;
assert(!$this->isFileHeaderInitialized());
// Simple flush file header which will create it.
- $this->getBlockInstance()->flushFileHeader();
+ $this->flushFileHeader();
// Rewind seek position (to beginning of file) and update/flush file header
$this->rewineUpdateSeekPosition();
// Call pointer instance
return $this->getPointerInstance()->determineSeekPosition();
}
+
+ /**
+ * Reads the file header
+ *
+ * @return void
+ */
+ public function readFileHeader () {
+ // Call block instance
+ $this->getBlockInstance()->readFileHeader()
+ }
+
+ /**
+ * Flushes the file header
+ *
+ * @return void
+ */
+ public function flushFileHeader () {
+ // Call block instance
+ $this->getBlockInstance()->flushFileHeader()
+ }
}
// [EOF]