home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / com / dcom / atldraw / atldraw.h < prev    next >
C/C++ Source or Header  |  1998-04-02  |  1KB  |  49 lines

  1. // ATLDraw.h : main header file for the ATLDRAW application
  2. //
  3. // This is a part of the ActiveX Template Library.
  4. // Copyright (C) 1996 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // ActiveX Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // ActiveX Template Library product.
  12. //
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'preatldr.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "atldres.h"       // main symbols
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CATLDrawApp:
  22. // See ATLDraw.cpp for the implementation of this class
  23. //
  24.  
  25. class CATLDrawApp : public CWinApp
  26. {
  27. public:
  28.     CATLDrawApp();
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CATLDrawApp)
  33.     public:
  34.     virtual BOOL InitInstance();
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38.  
  39.     //{{AFX_MSG(CATLDrawApp)
  40.     afx_msg void OnAppAbout();
  41.         // NOTE - the ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.