home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBLineChart / HTBLineChart.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.6 KB  |  58 lines

  1. // HTBLineChart.h : main header file for the HTBLINECHART DLL
  2. //
  3.  
  4. #if !defined(AFX_HTBLINECHART_H__42CAE245_D33B_11D3_AFCF_00104B9A4FD0__INCLUDED_)
  5. #define AFX_HTBLINECHART_H__42CAE245_D33B_11D3_AFCF_00104B9A4FD0__INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. #ifndef __AFXWIN_H__
  12.     #error include 'stdafx.h' before including this file for PCH
  13. #endif
  14.  
  15. #include "resource.h"        // main symbols
  16. #include "chartline.h"
  17. #include "linechartdlg.h"
  18.  
  19. extern int g_UpperBound;
  20. extern int g_LowerBound;
  21. extern int g_Timer;
  22. extern CChartLine * g_pChartLines;
  23. extern int g_Width;
  24. extern int g_Height;
  25. extern CString g_Title;
  26. extern CString g_Label;
  27. extern LineChartDlg* g_pLCDlg;
  28.  
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CHTBLineChartApp
  31. // See HTBLineChart.cpp for the implementation of this class
  32. //
  33.  
  34. class CHTBLineChartApp : public CWinApp
  35. {
  36. public:
  37.     CHTBLineChartApp();
  38.  
  39. // Overrides
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(CHTBLineChartApp)
  42.     //}}AFX_VIRTUAL
  43.  
  44.     //{{AFX_MSG(CHTBLineChartApp)
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.         //    DO NOT EDIT what you see in these blocks of generated code !
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_HTBLINECHART_H__42CAE245_D33B_11D3_AFCF_00104B9A4FD0__INCLUDED_)
  58.