home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c031 / 8.ddi / MFC / SAMPLES / CHART / CHART.H$ / chart
Encoding:
Text File  |  1992-03-18  |  991 b   |  38 lines

  1. // chart.h : Declares the class interfaces for the Chart application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13.  
  14. #ifndef __CHART_H__
  15. #define __CHART_H__
  16.  
  17. #include <afxwin.h>
  18. #include <afxcoll.h>
  19. #include <afxdlgs.h>
  20.  
  21. #include "resource.h"
  22. #include "dobject.h"
  23. #include "chartwnd.h"
  24. #include "chartdlg.h"
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27.  
  28. class CTheApp : public CWinApp
  29. {
  30. public:
  31.     virtual BOOL InitInstance();
  32.     virtual ~CTheApp();
  33. };
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36.  
  37. #endif // __CHART_H__
  38.