DebugFile.h
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:0k
源码类别:

VC书籍

开发平台:

Visual C++

  1. #ifndef DEBUG_FILE_H
  2. #define DEBUG_FILE_H
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. class DebugFile {
  6. private:
  7. FILE *debugFile;
  8. public:
  9. DebugFile(char *filename);
  10. ~DebugFile();
  11. void DebugInt(char *text, int d);
  12. void DebugFloat(char *text, float d);
  13. };
  14. #endif