CMakeCommandLineInfo.h 847 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // CMakeCommandLineInfo.h : main header file for the command line arguments
  2. //
  3. #if !defined(CMAKECOMMANDLINEINFO_H)
  4. #define CMAKECOMMANDLINEINFO_H
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. ///////////////////////////////////////////////////////////////
  12. // CMakeCommandLineInfo:
  13. // See CMakeCommandLineInfo.cpp for the implementation of this class
  14. //
  15. class CMakeCommandLineInfo : public CCommandLineInfo
  16. {
  17. // Construction
  18. public:
  19. CMakeCommandLineInfo();
  20. // Attributes
  21. public:
  22. CString m_WhereSource;
  23. CString m_WhereBuild;
  24. // Operations
  25. public:
  26. void ParseParam(const TCHAR* pszParam, BOOL bFlag, BOOL bLast);
  27. // Implementation
  28. public:
  29. virtual ~CMakeCommandLineInfo();
  30. };
  31. #endif // !defined(CMAKECOMMANDLINEINFO_H)