2014-06-29 15:15:38 +00:00
|
|
|
<?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
|
|
|
|
*
|
2014-07-08 20:35:56 +00:00
|
|
|
* @return string file_name
|
2014-06-29 15:15:38 +00:00
|
|
|
*/
|
|
|
|
function write();
|
|
|
|
|
|
|
|
}
|