home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c016 / 3.ddi / CORNEXT.PAK / TPATDLG.H < prev   
Encoding:
C/C++ Source or Header  |  1993-12-09  |  894 b   |  41 lines

  1. #if !defined(__tpatdlg_h)              // Sentry, use file only if it's not already included.
  2. #define __tpatdlg_h
  3.  
  4. /*  Project nextapp
  5.     
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    nextapp.exe Application
  9.     FILE:         tpatdlg.h
  10.     AUTHOR:       
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for TPatDlg (TDialog).      
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21. #include <owl\dialog.h>
  22.  
  23. #include "nxtppapp.rh"            // Definition of all resources.
  24.  
  25.  
  26. //{{TDialog = TPatDlg}}
  27. class TPatDlg : public TDialog {
  28. public:
  29.     TPatDlg (TWindow* parent, TResId resId = IDD_PATIENTS, TModule* module = 0);
  30.     virtual ~TPatDlg ();
  31.  
  32. //{{TPatDlgVIRTUAL_BEGIN}}
  33. public:
  34.     virtual BOOL PreProcessMsg (MSG& msg);
  35. //{{TPatDlgVIRTUAL_END}}
  36. };    //{{TPatDlg}}
  37.  
  38.  
  39. #endif                                      // __tpatdlg_h sentry.
  40.  
  41.