home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / VFORM.ZIP / Samples / vfTest / Example1Dlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-10  |  1.6 KB  |  58 lines

  1. // -------------------------------------------------------------------------
  2. // Copyright @ 1997 TCK Software, Incorporated
  3. // All Rights Reserved
  4. // -------------------------------------------------------------------------
  5. #if !defined(AFX_EXAMPLE1DLG_H__21D448A2_0F6C_11D1_B2A5_444553540000__INCLUDED_)
  6. #define AFX_EXAMPLE1DLG_H__21D448A2_0F6C_11D1_B2A5_444553540000__INCLUDED_
  7.  
  8. #if _MSC_VER >= 1000
  9. #pragma once
  10. #endif // _MSC_VER >= 1000
  11. // Example1Dlg.h : header file
  12. //
  13.  
  14. #include "TestVF.h"
  15. #include "PalHook.h"
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CExample1Dlg dialog
  19.  
  20. class CExample1Dlg : public CDialog
  21. {
  22.     CTestVF        m_ctlTestVF;            // Test VForm Control
  23.     CPalMsgHandler m_palMsgHandler;
  24.  
  25. // Construction
  26. public:
  27.     CExample1Dlg(CWnd* pParent = NULL);   // standard constructor
  28.  
  29. // Dialog Data
  30.     //{{AFX_DATA(CExample1Dlg)
  31.     enum { IDD = IDD_EXAMPLE1 };
  32.         // NOTE: the ClassWizard will add data members here
  33.     //}}AFX_DATA
  34.  
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(CExample1Dlg)
  39.     protected:
  40.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41.     //}}AFX_VIRTUAL
  42.  
  43. // Implementation
  44. protected:
  45.  
  46.     // Generated message map functions
  47.     //{{AFX_MSG(CExample1Dlg)
  48.     virtual BOOL OnInitDialog();
  49.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_EXAMPLE1DLG_H__21D448A2_0F6C_11D1_B2A5_444553540000__INCLUDED_)
  58.