home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 8090 / ModelEdit.7z / DirDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-08  |  742 b   |  30 lines

  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.   bool DoBrowse();
  19. public:
  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_)
  28.  
  29.  
  30.