You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
789 B
37 lines
789 B
#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
|