// Just call the pointer instance
$this->getPointerInstance()->analyzeFile();
}
+
+ /**
+ * Checks whether the file header is initialized
+ *
+ * @return $isInitialized Whether the file header is initialized
+ */
+ public function isFileHeaderInitialized () {
+ // Just call the pointer instance
+ return $this->getPointerInstance()->isFileHeaderInitialized();
+ }
+
+ /**
+ * Creates the assigned file
+ *
+ * @return void
+ */
+ public function createFileHeader () {
+ // Just call the pointer instance
+ $this->getPointerInstance()->createFileHeader();
+ }
+
+ /**
+ * Pre-allocates file (if enabled) with some space for later faster write access.
+ *
+ * @param $type Type of the file
+ * @return void
+ */
+ public function preAllocateFile ($type) {
+ // Just call the pointer instance
+ $this->getPointerInstance()->preAllocateFile($type);
+ }
}
// [EOF]