home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 83win / data1.cab / DLL_Toolkit / Source / HTBMeter / MeterDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-02  |  1.3 KB  |  52 lines

  1. /***************************************************
  2. HTBMeter.dll
  3.  
  4. MeterDlg.h
  5.  
  6. Copyright TransEra Corporation 1999 
  7. ***************************************************/
  8.  
  9. #if !defined(AFX_METERDLG_H__01F5436C_7B3D_11D3_8BCE_00105AC66D91__INCLUDED_)
  10. #define AFX_METERDLG_H__01F5436C_7B3D_11D3_8BCE_00105AC66D91__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. class MeterDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     MeterDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(MeterDlg)
  24.     enum { IDD = IDD_DIALOG1 };
  25.         // NOTE: the ClassWizard will add data members here
  26.     //}}AFX_DATA
  27.  
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(MeterDlg)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(MeterDlg)
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnPaint();
  43.     afx_msg void OnTimer(UINT nIDEvent);
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50.  
  51. #endif // !defined(AFX_METERDLG_H__01F5436C_7B3D_11D3_8BCE_00105AC66D91__INCLUDED_)
  52.