Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name :
  4. linkchk.h
  5. Abstract:
  6. MFC CWinApp derived application class declaration.
  7. Author:
  8. Michael Cheuk (mcheuk)
  9. Project:
  10. Link Checker
  11. Revision History:
  12. --*/
  13. #ifndef _LINKCHK_H_
  14. #define _LINKCHK_H_
  15. #include "resource.h"
  16. #include "cmdline.h"
  17. #include "lcmgr.h"
  18. //---------------------------------------------------------------------------
  19. // MFC CWinApp derived application class.
  20. //
  21. class CLinkCheckerApp : public CWinApp
  22. {
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CLinkCheckerApp)
  27. public:
  28. virtual BOOL InitInstance();
  29. //}}AFX_VIRTUAL
  30. // Protected funtions
  31. protected:
  32. // Parse command line
  33. void ParseCmdLine(
  34. CCmdLine& CmdLine
  35. );
  36. // Protected members
  37. protected:
  38. CCmdLine m_CmdLine; // command line object
  39. CLinkCheckerMgr m_LinkCheckerMgr; // link checker manager
  40. // Implementation
  41. //{{AFX_MSG(CLinkCheckerApp)
  42. // NOTE - the ClassWizard will add and remove member functions here.
  43. // DO NOT EDIT what you see in these blocks of generated code !
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. }; // class CLinkCheckerApp
  47. #endif // _LINKCHK_H_