|
Revision 5, 0.7 kB
(checked in by qbert, 3 years ago)
|
Initial ( and last :( ) commit
|
| Line | |
|---|
| 1 |
//////////////////////////////////////////////////////////////////////// |
|---|
| 2 |
// DirDialog.h: interface for the CDirDialog class. |
|---|
| 3 |
// |
|---|
| 4 |
////////////////////////////////////////////////////////////////////// |
|---|
| 5 |
|
|---|
| 6 |
#if !defined(AFX_DIRDIALOG_H__62FFAC92_1DEE_11D1_B87A_0060979CDF6D__INCLUDED_) |
|---|
| 7 |
#define AFX_DIRDIALOG_H__62FFAC92_1DEE_11D1_B87A_0060979CDF6D__INCLUDED_ |
|---|
| 8 |
|
|---|
| 9 |
#if _MSC_VER >= 1000 |
|---|
| 10 |
#pragma once |
|---|
| 11 |
#endif // _MSC_VER >= 1000 |
|---|
| 12 |
|
|---|
| 13 |
class CDirDialog |
|---|
| 14 |
{ |
|---|
| 15 |
public: |
|---|
| 16 |
CDirDialog(); |
|---|
| 17 |
virtual ~CDirDialog(); |
|---|
| 18 |
int DoBrowse(); |
|---|
| 19 |
|
|---|
| 20 |
CString m_strPath; |
|---|
| 21 |
CString m_strInitDir; |
|---|
| 22 |
CString m_strSelDir; |
|---|
| 23 |
CString m_strTitle; |
|---|
| 24 |
int m_iImageIndex; |
|---|
| 25 |
}; |
|---|
| 26 |
|
|---|
| 27 |
#endif // !defined(AFX_DIRDIALOG_H__62FFAC92_1DEE_11D1_B87A_0060979CDF6D__INCLUDED_) |
|---|