home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / visualj / vjtrial.exe / RCDATA / CABINET / mfcapwz.dll / TEMPLATE / ROOT.H < prev    next >
C/C++ Source or Header  |  1997-01-28  |  2KB  |  66 lines

  1. // $$root$$.h : main header file for the $$ROOT$$ application
  2. //
  3.  
  4. #if !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  5. #define $$FILE_NAME_SYMBOL$$_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.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // $$APP_CLASS$$:
  19. // See $$root$$.cpp for the implementation of this class
  20. //
  21.  
  22. class $$APP_CLASS$$ : public $$APP_BASE_CLASS$$
  23. {
  24. public:
  25.     $$APP_CLASS$$();
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL($$APP_CLASS$$)
  30.     public:
  31.     virtual BOOL InitInstance();
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. $$IF(FULL_SERVER || MINI_SERVER || CONTAINER_SERVER || AUTOMATION)
  36.     COleTemplateServer m_server;
  37. $$IF(VERBOSE)
  38.         // Server object for document creation
  39. $$ENDIF
  40. $$ENDIF
  41.  
  42.     //{{AFX_MSG($$APP_CLASS$$)
  43.     afx_msg void OnAppAbout();
  44. $$IF(VERBOSE)
  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. $$ENDIF
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. $$IF(VBX)
  53. /////////////////////////////////////////////////////////////////////////////
  54. // VB-Event extern declarations
  55.  
  56. //{{AFX_VBX_REGISTER()
  57. //}}AFX_VBX_REGISTER
  58. $$ENDIF //VBX
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61.  
  62. //{{AFX_INSERT_LOCATION}}
  63. // $$INSERT_LOCATION_COMMENT$$
  64.  
  65. #endif // !defined($$FILE_NAME_SYMBOL$$_INCLUDED_)
  66.