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 + -
显示快捷键?