home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c13 / useatltrig2 / useatltrigdlg.h < prev   
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.3 KB  |  54 lines

  1. // UseAtlTrigDlg.h : header file
  2.  
  3. #if !defined(AFX_USEATLTRIGDLG_H__777772F6_5F00_11D0_98AB_444553540000__INCLUDED_)
  4. #define AFX_USEATLTRIGDLG_H__777772F6_5F00_11D0_98AB_444553540000__INCLUDED_
  5.  
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9.  
  10. // CUseAtlTrigDlg dialog
  11.  
  12. using namespace ATLTRIGLib;
  13.  
  14. class CUseAtlTrigDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18.     CUseAtlTrigDlg(CWnd* pParent = NULL);    // standard constructor
  19.  
  20. // Dialog Data
  21.     //{{AFX_DATA(CUseAtlTrigDlg)
  22.     enum { IDD = IDD_USEATLTRIG_DIALOG };
  23.         // NOTE: the ClassWizard will add data members here
  24.     //}}AFX_DATA
  25.  
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CUseAtlTrigDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.     HICON m_hIcon;
  35.  
  36.     // This is the "smart pointer"
  37.     ItrigPtr m_pTrig;
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CUseAtlTrigDlg)
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnPaint();
  43.     afx_msg HCURSOR OnQueryDragIcon();
  44.     afx_msg void OnButtonAtl();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51.  
  52. #endif // !defined(AFX_USEATLTRIGDLG_H__777772F6_5F00_11D0_98AB_444553540000__INCLUDED_)
  53.  
  54.