|
- #include "stdafx.h"
- #include "ShowTime.h"
- #include "ServiceUnits.h"
-
- CShowTime::CShowTime(CString csSay, bool bSend, WORD wMainCmdID, WORD wCmdTable)
- {
- CString csTest;
-
- if (!bSend)
- {
- csTest.Format(_T("c--->s %s cmdid:%d-%d"), csSay, wMainCmdID, wCmdTable);
- }
- else
- {
- csTest.Format(_T("c<---s %s"), csSay, wMainCmdID, wCmdTable);
- }
-
- //ÌáʾÏûÏ¢
- CTraceService::TraceString(csTest, TraceLevel_Warning);
- }
-
-
- CShowTime::~CShowTime()
- {
- //DWORD dRet = mLast - GetTickCount();
- }
|