AlternC/lib/Alternc/Diagnostic/Format/Interface.php

21 lines
395 B
PHP
Raw Normal View History

<?php
interface Alternc_Diagnostic_Format_Interface{
/**
*
* @param mixed $file_reference
* Either a number or a string refering to the file
* @return Alternc_Diagnostic_Data A diagnostic file
*/
function read( $file_reference );
/**
* Writes a Data object to file
*
* @return boolean
*/
function write();
}