47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
////////////////////////////////////////////////////////////////////////////////////////
|
|
// File : dlgladai.hpp
|
|
// Author : Cristi Petrescu
|
|
// Date : 98.03
|
|
// Description : header for simple dialog class to display two labeled buttonds in the
|
|
// center of the main view
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DlgLoadAI dialog
|
|
|
|
class DlgLoadAI : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
DlgLoadAI(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(DlgLoadAI)
|
|
enum { IDD = IDD_OAC_LOAD_AI };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(DlgLoadAI)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(DlgLoadAI)
|
|
afx_msg void OnOacLoadAi();
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnOacShowModels();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|