68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
#if !defined(AFX_DIALIST_HPP__E7269CDD_2F2D_11D1_98A8_00609736738F__INCLUDED_)
|
|
#define AFX_DIALIST_HPP__E7269CDD_2F2D_11D1_98A8_00609736738F__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
// dialist.hpp : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DiaList form view
|
|
|
|
#ifndef __AFXEXT_H__
|
|
#include <afxext.h>
|
|
#endif
|
|
|
|
class CMaterialListView;
|
|
|
|
class DiaList : public CFormView
|
|
{
|
|
protected:
|
|
DiaList(); // protected constructor used by dynamic creation
|
|
DECLARE_DYNCREATE(DiaList)
|
|
|
|
// Form Data
|
|
public:
|
|
//{{AFX_DATA(DiaList)
|
|
enum { IDD = IDD_LIST_DIALOG };
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
protected:
|
|
|
|
// Attributes
|
|
public:
|
|
CMaterialListView *m_p_oMaterialListView;
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(DiaList)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
virtual ~DiaList();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(DiaList)
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_DIALIST_HPP__E7269CDD_2F2D_11D1_98A8_00609736738F__INCLUDED_)
|