49 lines
1.0 KiB
C++
49 lines
1.0 KiB
C++
// IADLstCt.hpp : header file
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _IAD_LIST_CONTROL_
|
|
#define _IAD_LIST_CONTROL_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// IAD_ListControl window
|
|
|
|
class IAD_ListControl : public CListCtrl
|
|
{
|
|
// Construction
|
|
public:
|
|
IAD_ListControl();
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(IAD_ListControl)
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~IAD_ListControl();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(IAD_ListControl)
|
|
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // _IAD_LIST_CONTROL_
|