home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c11 / lab04 / ex01 / baseline / gpsnk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.2 KB  |  46 lines

  1. // gpsnk.h : main header file for the GPSNK application
  2. //
  3.  
  4. #if !defined(AFX_GPSNK_H__80FDB0A3_5199_11D0_9F76_00AA00680BB3__INCLUDED_)
  5. #define AFX_GPSNK_H__80FDB0A3_5199_11D0_9F76_00AA00680BB3__INCLUDED_
  6.  
  7. #ifndef __AFXWIN_H__
  8.     #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10.  
  11. #include "resource.h"        // main symbols
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CGpsnkApp:
  15. // See gpsnk.cpp for the implementation of this class
  16. //
  17.  
  18. class CGpsnkApp : public CWinApp
  19. {
  20. public:
  21.     CGpsnkApp();
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CGpsnkApp)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31.  
  32.     //{{AFX_MSG(CGpsnkApp)
  33.         // NOTE - the ClassWizard will add and remove member functions here.
  34.         //    DO NOT EDIT what you see in these blocks of generated code !
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.  
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  44.  
  45. #endif // !defined(AFX_GPSNK_H__80FDB0A3_5199_11D0_9F76_00AA00680BB3__INCLUDED_)
  46.