home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / RICHCT / FLOPNDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-19  |  957 b   |  39 lines

  1. #if !defined(__flopndlg_h)              // Sentry, use file only if it's not already included.
  2. #define __flopndlg_h
  3.  
  4. /*  Project richctrl
  5.     DHB Software
  6.     Copyright ⌐ 1996. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    richctrl.apx Application
  9.     FILE:         flopndlg.h
  10.     AUTHOR:       David H. Borg
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for FileOpenDialog (TFileOpenDialog).      
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21.  
  22. #include "rchctrla.rh"            // Definition of all resources.
  23.  
  24.  
  25. //{{TFileOpenDialog = FileOpenDialog}}
  26. class FileOpenDialog : public TFileOpenDialog {
  27. public:
  28.     FileOpenDialog (TWindow* parent, TData& data, TResId templateId = 0, const char far* title = 0, TModule* module = 0);
  29.     virtual ~FileOpenDialog ();
  30.  
  31. protected:
  32.     int DoExecute ();            // override OWL function
  33.  
  34. };    //{{FileOpenDialog}}
  35.  
  36.  
  37. #endif                                      // __flopndlg_h sentry.
  38.  
  39.