⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sl_plcdoc.cpp

📁 一个不错的PLC通讯程序,可以方便地实现远程监控,现场总线监控.
💻 CPP
字号:
// SL_PLCDoc.cpp : implementation of the CSL_PLCDoc class
//

#include "stdafx.h"
#include "SL_PLC.h"

#include "SL_PLCDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CSL_PLCDoc

IMPLEMENT_DYNCREATE(CSL_PLCDoc, CDocument)

BEGIN_MESSAGE_MAP(CSL_PLCDoc, CDocument)
	//{{AFX_MSG_MAP(CSL_PLCDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSL_PLCDoc construction/destruction

CSL_PLCDoc::CSL_PLCDoc()
{
	// TODO: add one-time construction code here

}

CSL_PLCDoc::~CSL_PLCDoc()
{
}

BOOL CSL_PLCDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CSL_PLCDoc serialization

void CSL_PLCDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CSL_PLCDoc diagnostics

#ifdef _DEBUG
void CSL_PLCDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CSL_PLCDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CSL_PLCDoc commands

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -