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

Windows编程

开发平台:

Visual C++

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