Compute_Prompt.cpp
上传用户:sanxfzhen
上传日期:2014-12-28
资源大小:2324k
文件大小:1k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // Compute_Prompt.cpp: implementation of the CCompute_Prompt class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "TextClassify.h"
  6. #include "Compute_Prompt.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CCompute_Prompt::CCompute_Prompt()
  16. {
  17. }
  18. CCompute_Prompt::~CCompute_Prompt()
  19. {
  20. }
  21. void CCompute_Prompt::Copy(const CCompute_Prompt& t)
  22. {
  23.  
  24. show_action=t.show_action;
  25. show_compute_1=t.show_compute_1;
  26. show_compute_2=t.show_compute_2;
  27. show_compute_3=t.show_compute_3;
  28. show_other=t.show_other;
  29. show_readfile=t.show_readfile;
  30. show_testresult=t.show_testresult;
  31. show_title=t.show_title;
  32. show_trainresult=t.show_trainresult;
  33. show_writefile=t.show_writefile;
  34. show_openfile=t.show_openfile;
  35. return ;
  36.  
  37. }
  38. void CCompute_Prompt::Clear()
  39. {  
  40. show_action=show_title=show_compute_1
  41. =show_other=show_trainresult=show_testresult
  42. =show_readfile=show_writefile=FALSE;
  43.  
  44. }
  45. void CCompute_Prompt::Setup()
  46. {
  47. show_action=show_title=show_compute_1
  48. =show_other=show_trainresult=show_testresult
  49. =show_readfile=show_writefile=TRUE;
  50. }