📄 channelinfo.cpp
字号:
// ChannelInfo.cpp: implementation of the CChannelInfo class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "ChannelInfo.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CChannelInfo::CChannelInfo()
{
m_ChannelID = 0;
m_Equipment = "";
m_CurrentValue = 0.0;
m_ValueTime = COleDateTime();
m_AlarmLevel = 0;
m_AlarmTime = COleDateTime();
m_ConfirmOp = "";
m_ConfirmTime = COleDateTime();
m_ChannelType = 0;
m_ErrorString = "Invalidation Value";
}
CChannelInfo::~CChannelInfo()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -