home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / WTJ9403.ZIP / OTEXT / OTEXT.H < prev    next >
C/C++ Source or Header  |  1994-01-01  |  885b  |  37 lines

  1. // otext.h : main header file for the OTEXT 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. // COTextApp:
  12. // See otext.cpp for the implementation of this class
  13. //
  14.  
  15. class COTextApp : public CWinApp
  16. {
  17. public:
  18.     COTextApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.     COleTemplateServer m_server;
  25.         // Server object for document creation
  26.  
  27.     //{{AFX_MSG(COTextApp)
  28.     afx_msg void OnAppAbout();
  29.         // NOTE - the ClassWizard will add and remove member functions here.
  30.         //    DO NOT EDIT what you see in these blocks of generated code !
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33. };
  34.  
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37.