/*
File created 7/1/2008 by Nick Brown
*/

var displayepochlibrary:=class GeneralFunction
(
	var getme:=method[] 
	(				
		dependency.addinclude["<LOGS.h>"];
		return new displayepochlibrary[];
	);
	var spawn:=method[] return this.getme;		
	var checkFunction:=method[x] super.checkFunction[x,0];
	var getCurrentType:=method[] return new unknown;
	
	var generateCode:=method[]
	(
		includeRunTimeLibrary[];
		output.add["LOGSdisplayhighresepoch();"];
		output.newline[];
	);
);
var displayepoch:=(new displayepochlibrary[]).spawn[];