ROOT.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // $$root$$.h : main header file for the $$ROOT$$ application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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 and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h"       // main symbols
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CServerApp:
  18. // See $$root$$.cpp for the implementation of this class
  19. //
  20. class CServerApp : public CWinApp
  21. {
  22. public:
  23. CServerApp();
  24. // Document view(s).
  25. $$IF(WANTS_TEXTVIEW)
  26. CDocTemplate* pDocTxtTemplate;
  27. $$ENDIF //WANTS_TEXTVIEW
  28. CDocTemplate* pDocTemplate ;
  29. // Overrides
  30. virtual BOOL InitInstance();
  31. virtual int ExitInstance();
  32. // Implementation
  33. protected:
  34. COleTemplateServer m_server;
  35. int m_iWantDefDoc ;
  36. CString m_DefaultDoc ;
  37. //{{AFX_MSG(CServerApp)
  38. afx_msg void OnAppAbout();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////