home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch08 / oserver / oserver.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-22  |  1012 b   |  41 lines

  1. // OServer.h : main header file for the OSERVER application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // COServerApp:
  12. // See OServer.cpp for the implementation of this class
  13. //
  14.  
  15. class COServerApp : public CWinApp
  16. {
  17. public:
  18.     COServerApp();
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(COServerApp)
  23.     public:
  24.     virtual BOOL InitInstance();
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28.     COleTemplateServer m_server;
  29.         // Server object for document creation
  30.  
  31.     //{{AFX_MSG(COServerApp)
  32.     afx_msg void OnAppAbout();
  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.