1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once
 
 
// CMTerm2CoilView 视图
 
class CMTerm2CoilView : public CListView
{
    DECLARE_DYNCREATE(CMTerm2CoilView)
 
protected:
    CMTerm2CoilView();           // 动态创建所使用的受保护的构造函数
    virtual ~CMTerm2CoilView();
 
public:
#ifdef _DEBUG
    virtual void AssertValid() const;
#ifndef _WIN32_WCE
    virtual void Dump(CDumpContext& dc) const;
#endif
#endif
 
protected:
    DECLARE_MESSAGE_MAP()
};