debugfile.h

来自「《Visual C++视频/音频开发实用工程案例精选》一书的源代码」· C头文件 代码 · 共 25 行

H
25
字号


#ifndef DEBUG_FILE_H
#define DEBUG_FILE_H

#include <stdio.h>
#include <stdlib.h>

class DebugFile {

private:

	FILE *debugFile;


public:

	DebugFile(char *filename);
	~DebugFile();

	void DebugInt(char *text, int d);
	void DebugFloat(char *text, float d);
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?