38 lines
752 B
C++
38 lines
752 B
C++
#if !defined(AFX_CONFDLG_H)
|
|
#define AFX_CONFDLG_H
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#include "rend.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CConfDlg dialog
|
|
|
|
class CConfDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CConfDlg(CWnd* pParent = NULL);
|
|
enum { IDD = IDD_CONFDLG };
|
|
BSTR m_bstrDestAddress;
|
|
ITDirectory * m_pDirectory;
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
void PopulateConferences();
|
|
void ListObjects( ITDirectory * );
|
|
BOOL CConfDlg::OnInitDialog();
|
|
virtual void OnOK();
|
|
afx_msg void OnDestroy();
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|
|
#endif
|