home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / clsxprt2 / tfrmtdlg.h < prev   
C/C++ Source or Header  |  1993-12-06  |  1KB  |  47 lines

  1. #if !defined(__tfrmtdlg_h)              // Sentry, use file only if it's not already included.
  2. #define __tfrmtdlg_h
  3.  
  4. /*  Project clsxprt2
  5.     
  6.     Copyright ⌐ 1993. All Rights Reserved.
  7.  
  8.     SUBSYSTEM:    clsxprt2.exe Application
  9.     FILE:         tfrmtdlg.h
  10.     AUTHOR:       
  11.  
  12.  
  13.     OVERVIEW
  14.     ========
  15.     Class definition for TFrmtDialog (TDialog).      
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21. #include <owl\dialog.h>
  22.  
  23. #include "clsxpr2a.rh"            // Definition of all resources.
  24. #include "clsxpr2a.h"
  25.  
  26. //{{TDialog = TFrmtDialog}}
  27. class TFrmtDialog : public TDialog {
  28. public:
  29.     TFrmtDialog (TWindow* parent, TResId resId = IDD_ABOUT, TModule* module = 0);
  30.     virtual ~TFrmtDialog ();
  31.     BOOL IsAmPm;
  32.     clsxprt2App::dateFormat df;
  33.  
  34. //{{TFrmtDialogVIRTUAL_BEGIN}}
  35. public:
  36.     virtual BOOL EvInitDialog (HWND hWndFocus);
  37.     void CmOk();
  38. //{{TFrmtDialogVIRTUAL_END}}
  39.  
  40.  // insert declaration of response table
  41.  DECLARE_RESPONSE_TABLE(TFrmtDialog);
  42. };    //{{TFrmtDialog}}
  43.  
  44.  
  45. #endif                                      // __tfrmtdlg_h sentry.
  46.  
  47.