matlab调用dlg.h

来自「VC MATLAB 混编示例 ppWizard has created thi」· C头文件 代码 · 共 69 行

H
69
字号
// matlab调用Dlg.h : header file
//

#if !defined(AFX_MATLABDLG_H__92908E87_973F_11D7_80DF_000021E3C617__INCLUDED_)
#define AFX_MATLABDLG_H__92908E87_973F_11D7_80DF_000021E3C617__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "XPbutton.h"
/////////////////////////////////////////////////////////////////////////////
// CMatlabDlg dialog

class CMatlabDlg : public CDialog
{
// Construction
public:
	CMatlabDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CMatlabDlg)
	enum { IDD = IDD_MATLAB_DIALOG };
	CXPButton	m_OkButton;
	CXPButton	m_Transpose;
	CXPButton	m_Times;
	CXPButton	m_Plot;
	CXPButton	m_Minus;
	CXPButton	m_Inv;
	CXPButton	m_FunResolve;
	CXPButton	m_Eig;
	CXPButton	m_Div;
	CXPButton	m_Discreate;
	CXPButton	m_Det;
	CXPButton	m_Add;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CMatlabDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnAdd();
	afx_msg void OnMinus();
	afx_msg void OnTimes();
	afx_msg void OnDiv();
	afx_msg void OnInv();
	afx_msg void OnTranspose();
	afx_msg void OnDet();
	afx_msg void OnEig();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_MATLABDLG_H__92908E87_973F_11D7_80DF_000021E3C617__INCLUDED_)

⌨️ 快捷键说明

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