readtxtview.h
来自「根据空间三点坐标来计算三点所在圆心,可以应用到测量领域」· C头文件 代码 · 共 68 行
H
68 行
// ReadTxtView.h : interface of the CReadTxtView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_READTXTVIEW_H__A0D69D8C_3B16_4D71_BB52_A8BCEF79897A__INCLUDED_)
#define AFX_READTXTVIEW_H__A0D69D8C_3B16_4D71_BB52_A8BCEF79897A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CReadTxtView : public CView
{
protected: // create from serialization only
CReadTxtView();
DECLARE_DYNCREATE(CReadTxtView)
// Attributes
public:
CReadTxtDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CReadTxtView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CReadTxtView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CReadTxtView)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in ReadTxtView.cpp
inline CReadTxtDoc* CReadTxtView::GetDocument()
{ return (CReadTxtDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_READTXTVIEW_H__A0D69D8C_3B16_4D71_BB52_A8BCEF79897A__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?