1 #pragma once
2 #include "afxwin.h"
3 
4 
5 // delete_language_dlg dialog
6 
7 class delete_language_dlg : public CDialogEx
8 {
9 	DECLARE_DYNAMIC(delete_language_dlg)
10 
11 public:
12 	delete_language_dlg(CWnd* pParent = NULL);   // standard constructor
13 	virtual ~delete_language_dlg();
14 
15 // Dialog Data
16 	enum { IDD = IDD_DELETE_LANGUAGE };
17 
18 protected:
19 	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
20 
21 	DECLARE_MESSAGE_MAP()
22 public:
23     afx_msg void OnBnClickedOk();
24     CComboBox mLangNameCombo;
25 };
26