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.

76 lines
1.9 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996-1997 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // CmdLine.h
  7. //
  8. // Abstract:
  9. // Definition of the CCluAdminCommandLineInfo class.
  10. //
  11. // Implementation File:
  12. // CmdLine.cpp
  13. //
  14. // Author:
  15. // David Potter (davidp) March 31, 1997
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _CMDLINE_H_
  23. #define _CMDLINE_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Include Files
  26. /////////////////////////////////////////////////////////////////////////////
  27. /////////////////////////////////////////////////////////////////////////////
  28. // Forward Class Declarations
  29. /////////////////////////////////////////////////////////////////////////////
  30. class CCluAdminCommandLineInfo;
  31. /////////////////////////////////////////////////////////////////////////////
  32. // External Class Declarations
  33. /////////////////////////////////////////////////////////////////////////////
  34. /////////////////////////////////////////////////////////////////////////////
  35. // Type Definitions
  36. /////////////////////////////////////////////////////////////////////////////
  37. /////////////////////////////////////////////////////////////////////////////
  38. // class CCluAdminCommandLineInfo
  39. /////////////////////////////////////////////////////////////////////////////
  40. class CCluAdminCommandLineInfo : public CCommandLineInfo
  41. {
  42. public:
  43. CCluAdminCommandLineInfo(void);
  44. // Attributes
  45. public:
  46. CStringList m_lstrClusters;
  47. BOOL m_bReconnect;
  48. CStringList & LstrClusters(void) { return m_lstrClusters; }
  49. // Operations
  50. public:
  51. // Overrides
  52. public:
  53. virtual void ParseParam(IN const TCHAR * pszParam, IN BOOL bFlag, IN BOOL bLast);
  54. // Implementation
  55. public:
  56. protected:
  57. }; //*** class CCluAdminCommandLineInfo
  58. /////////////////////////////////////////////////////////////////////////////
  59. #endif // _CMDLINE_H_