?? processdlg.h
字號:
// ProcessDlg.h : header file
//
#include "shijianpian.h"
#include <vector>
#include "afxcmn.h"
using std::vector;
#if !defined(AFX_PROCESSDLG_H__2D61E63C_E102_4B80_8D9E_083A0A3684D8__INCLUDED_)
#define AFX_PROCESSDLG_H__2D61E63C_E102_4B80_8D9E_083A0A3684D8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CProcessDlg dialog
class CProcessDlg : public CDialog
{
// Construction
public:
CProcessDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CProcessDlg)
enum { IDD = IDD_PROCESS_DIALOG };
CListCtrl m_List;
CString m_strName;
int m_nArriveTime;
int m_nExeTime;
//}}AFX_DATA
std::vector< ElemType > vecElem;
LinkQueue m_linkQueue;
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CProcessDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CProcessDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnButton1();
afx_msg void OnButton2();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
void ShowVecElem();
public:
int n;
public:
CListCtrl m_listVec;
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -