CMD.cpp
上传用户:xiaoke98
上传日期:2014-06-29
资源大小:5718k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // CMD.cpp: implementation of the CCMD class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "HomeFinanceManager.h"
  6. #include "CMD.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. CCMD::CCMD(CString strInfo)
  16. {
  17. m_strCmdInfo = strInfo;
  18. }
  19. CCMD::~CCMD()
  20. {
  21. }
  22. CString CCMD::getCmdInfo(void)
  23. {
  24. return m_strCmdInfo;
  25. }
  26. CMDTYPE CCMD::getType(void)
  27. {
  28. return m_Type;
  29. }
  30. void CCMD::setType(CMDTYPE Type)
  31. {
  32. m_Type = Type;
  33. }