www.pudn.com > MyPlayerbylqh.rar > DebugFile.h


 
 
#ifndef DEBUG_FILE_H 
#define DEBUG_FILE_H 
 
#include  
#include  
 
class DebugFile { 
 
private: 
 
	FILE *debugFile; 
 
 
public: 
 
	DebugFile(char *filename); 
	~DebugFile(); 
 
	void DebugInt(char *text, int d); 
	void DebugFloat(char *text, float d); 
}; 
 
#endif