diff options
author | Jorgen Bodde <jorgb@xs4all.nl> | 2005-06-30 19:52:04 (GMT) |
---|---|---|
committer | Jorgen Bodde <jorgb@xs4all.nl> | 2005-06-30 19:52:04 (GMT) |
commit | 099587c4ee40f05e99666eeab92a0357cd932a38 (patch) | |
tree | 4301c09347f62aea621f7234965c1fe120cddf6b /Source/WXDialog/cmWXCommandLineInfo.h | |
parent | ba3b7c1588abf9009895e47a93a0614bec484315 (diff) | |
download | CMake-099587c4ee40f05e99666eeab92a0357cd932a38.zip CMake-099587c4ee40f05e99666eeab92a0357cd932a38.tar.gz CMake-099587c4ee40f05e99666eeab92a0357cd932a38.tar.bz2 |
deleted old wx-dialog
Diffstat (limited to 'Source/WXDialog/cmWXCommandLineInfo.h')
-rw-r--r-- | Source/WXDialog/cmWXCommandLineInfo.h | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/Source/WXDialog/cmWXCommandLineInfo.h b/Source/WXDialog/cmWXCommandLineInfo.h deleted file mode 100644 index 01b33d4..0000000 --- a/Source/WXDialog/cmWXCommandLineInfo.h +++ /dev/null @@ -1,66 +0,0 @@ -/*========================================================================= - - Program: CMake - Cross-Platform Makefile Generator - Module: $RCSfile$ - Language: C++ - Date: $Date$ - Version: $Revision$ - - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - -=========================================================================*/ -// cmCommandLineInfo.h : main header file for the command line arguments -// - -#if !defined(CMAKECOMMANDLINEINFO_H) -#define CMAKECOMMANDLINEINFO_H - -#include "cmStandardIncludes.h" - -/////////////////////////////////////////////////////////////// -// cmCommandLineInfo: -// See cmCommandLineInfo.cxx for the implementation of this class -// - -class cmCommandLineInfo -{ - // Construction -public: - cmCommandLineInfo(); - virtual ~cmCommandLineInfo(); - - // Parse the command line - void ParseCommandLine(int argc, char* argv[]); - - // Set the valid arguments - void SetValidArguments(const std::string& va) { this->m_ValidArguments = va; } - - // Retrieve the path of executable - std::string GetPathToExecutable() { return this->m_ExecutablePath; } - - // Attributes -public: - std::string m_WhereSource; - std::string m_WhereBuild; - bool m_AdvancedValues; - std::string m_GeneratorChoiceString; - std::string m_LastUnknownParameter; - std::string m_ExecutablePath; - bool m_ExitAfterLoad; - -protected: - // Parse one argument - void ParseParam(const std::string& parameter, bool know_about, bool last); - - // Return boolean value of the string - static int GetBoolValue(const std::string&); - - std::string m_ValidArguments; -}; - -#endif // !defined(CMAKECOMMANDLINEINFO_H) |