CMD.cpp
上传用户:xiaoke98
上传日期:2014-06-29
资源大小:5718k
文件大小:1k
- // CMD.cpp: implementation of the CCMD class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "HomeFinanceManager.h"
- #include "CMD.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CCMD::CCMD(CString strInfo)
- {
- m_strCmdInfo = strInfo;
- }
- CCMD::~CCMD()
- {
- }
- CString CCMD::getCmdInfo(void)
- {
- return m_strCmdInfo;
- }
- CMDTYPE CCMD::getType(void)
- {
- return m_Type;
- }
- void CCMD::setType(CMDTYPE Type)
- {
- m_Type = Type;
- }