LED.CPP
资源名称:停车场管理系统.zip [点击查看]
上传用户:trilite
上传日期:2007-04-24
资源大小:261k
文件大小:1k
源码类别:
酒店行业
开发平台:
Visual C++
- // LED.cpp: implementation of the CLED class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "ParkSys.h"
- #include "LED.h"
- #include "vicpublic.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CLED::CLED(CSerialPort* commLED)
- {
- if(commLED == NULL)
- {
- THROW(new CException);
- }
- else
- {
- m_comm = commLED;
- }
- }
- CLED::~CLED()
- {
- m_comm = NULL;
- }
- void CLED::TakeEffect(const CString& strScript)
- {
- if(m_comm == NULL)
- {
- THROW(new CException);
- return;
- }
- char buf[500];
- wsprintf(buf, "%s", strScript);
- m_comm->WriteToPort(buf);
- }