home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / mac / SiteBldr / AMOVIE / SDK / _SETUP / COMMON.Z / IPLAY.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-23  |  1.5 KB  |  58 lines

  1. // This code and information is provided "as is" without warranty of
  2. // any kind, either expressed or implied, including but not limited to
  3. // the implied warranties of merchantability and/or fitness for a
  4. // particular purpose.
  5.  
  6. // Copyright (C) 1996 Intel corporation.  All rights reserved.
  7.  
  8. // IPlay.h : main header file for the IPLAY application
  9. //
  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. // CIPlayApp:
  19. // See IPlay.cpp for the implementation of this class
  20. //
  21.  
  22. class CIPlayDoc;  // defined in IPlayDoc.h
  23.  
  24. class CIPlayApp : public CWinApp
  25. {
  26. public:
  27.     CIPlayApp();
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CIPlayApp)
  32.     public:
  33.     virtual BOOL InitInstance();
  34.     virtual int Run();
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Notify when document created / destroyed
  38. public:
  39.     void OnDocumentCreated( CIPlayDoc *pIPlayDoc );
  40.     void OnDocumentDestroyed( CIPlayDoc *pIPlayDoc );
  41.  
  42. // Point to our single document
  43. protected:
  44.     CIPlayDoc *m_pIPlayDoc;
  45.  
  46. // Implementation
  47.  
  48.     //{{AFX_MSG(CIPlayApp)
  49.     afx_msg void OnAppAbout();
  50.         // NOTE - the ClassWizard will add and remove member functions here.
  51.         //    DO NOT EDIT what you see in these blocks of generated code !
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.