/*TITLE statistics output class declarations */

/****keyword-flag*** "%v %f %n" */
/* "2 28-Mar-98,21:17:02 STATS.H" */


class PrintStat
{
protected:
	FILE *m_fp;
	PrintStat(const PrintStat& p_ps);
	PrintStat &operator=(const PrintStat& p_ps);
public:
	PrintStat();
	~PrintStat();
	void Init(char *p_Filename);
	int Write(char *fmt,...);
};

