debugfile.h

来自「<VC++视频音频开发>一书的光盘资料。」· 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 + -
显示快捷键?