rectvinfoview.h

来自「电压监测后台管理程序,数据是通过GPRS传到因特网的」· C头文件 代码 · 共 79 行

H
79
字号
// rectvinfoView.h : interface of the CRectvinfoView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_RECTVINFOVIEW_H__897A32FF_F9EA_42EB_B613_74D586572EFA__INCLUDED_)
#define AFX_RECTVINFOVIEW_H__897A32FF_F9EA_42EB_B613_74D586572EFA__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CRectvinfoView : public CFormView
{
protected: // create from serialization only
	CRectvinfoView();
	DECLARE_DYNCREATE(CRectvinfoView)

public:
	//{{AFX_DATA(CRectvinfoView)
	enum { IDD = IDD_RECTVINFO_FORM };
	CListCtrl	m_listDb;
	CListCtrl	m_listId;
	//}}AFX_DATA

// Attributes
public:
	CRectvinfoDoc* GetDocument();
private:
	int ListIdPoint;
	int ListDbPoint;
// Operations
public:
	void InitListId();
	void DeleteListId(char* telnum);
	void AddListId(char* telnum);
	void InitListDb();
	void AddListDb(char* telnum);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CRectvinfoView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnInitialUpdate(); // called first time after construct
	virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CRectvinfoView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CRectvinfoView)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in rectvinfoView.cpp
inline CRectvinfoDoc* CRectvinfoView::GetDocument()
   { return (CRectvinfoDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_RECTVINFOVIEW_H__897A32FF_F9EA_42EB_B613_74D586572EFA__INCLUDED_)

⌨️ 快捷键说明

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