DebugFile.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /**************************************************************************************
  2.  *                                                                                    *
  3.  *                                                                                    *
  4.  **************************************************************************************/
  5. /*
  6.  * 一个'Debug'类 
  7.  *
  8.  */
  9. #include "DebugFile.h"
  10. DebugFile::DebugFile(char *filename)
  11. {
  12. this->debugFile = fopen(filename, "w");
  13. }
  14. DebugFile::~DebugFile()
  15. {
  16. fclose(this->debugFile);
  17. }
  18. void DebugFile::DebugInt(char *text, int d)
  19. {
  20. fprintf(this->debugFile, text, d);
  21. fprintf(this->debugFile, "n");
  22. }
  23. void DebugFile::DebugFloat(char *text, float d)
  24. {
  25. fprintf(this->debugFile, text, d);
  26. fprintf(this->debugFile, "n");
  27. }