formset.h

来自「电机加速曲线生成器VC源程序,为从事或学习VC的朋友提供方便,同时该电机加速曲线」· C头文件 代码 · 共 72 行

H
72
字号
#if !defined(AFX_FORMSET_H__77AE8D4E_AE36_4D1B_8D70_B4D5B45ECE42__INCLUDED_)
#define AFX_FORMSET_H__77AE8D4E_AE36_4D1B_8D70_B4D5B45ECE42__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FormSet.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CFormSet form view

#ifndef __AFXEXT_H__
#include <afxext.h>
#endif

class CFormSet : public CFormView
{
protected:
	CFormSet();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(CFormSet)

// Form Data
public:
	//{{AFX_DATA(CFormSet)
	enum { IDD = IDD_FORM_SET };
	float	m_BeginF;
	float	m_A;
	int		m_nSteps;
	long    m_nOsc;
	//}}AFX_DATA

// Attributes
public:
   CMotorCtrlDoc *GetDocument();
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFormSet)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	
	//}}AFX_VIRTUAL

// Implementation
protected:
	virtual ~CFormSet();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;	
#endif
	
	// Generated message map functions
	//{{AFX_MSG(CFormSet)
	afx_msg void ViewFQ();
	afx_msg void MkTimerVal();    
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////
#ifndef _DEBUG  // debug version in MotorCtrlView.cpp
inline CMotorCtrlDoc* CFormSet::GetDocument()
   { return (CMotorCtrlDoc*)m_pDocument; }
#endif
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_FORMSET_H__77AE8D4E_AE36_4D1B_8D70_B4D5B45ECE42__INCLUDED_)

⌨️ 快捷键说明

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