Skip to content
Snippets Groups Projects
Commit 7affce22 authored by Tom Fischer's avatar Tom Fischer
Browse files

Merge pull request #756 from norihiro-w/add-ignore-unmatched-TCLAP

[TCLAP] add ignoreUnmatched
parents 9380758b 2d888d5b
No related branches found
No related tags found
No related merge requests found
...@@ -183,6 +183,11 @@ private: ...@@ -183,6 +183,11 @@ private:
*/ */
bool _helpAndVersion; bool _helpAndVersion;
/**
* Whether or not to ignore unmatched args.
*/
bool _ignoreUnmatched;
public: public:
/** /**
...@@ -313,6 +318,13 @@ private: ...@@ -313,6 +318,13 @@ private:
*/ */
void reset(); void reset();
/**
* Allows unmatched args to be ignored. By default false.
*
* @param ignore If true the cmdline will ignore any unmatched args
* and if false it will behave as normal.
*/
void ignoreUnmatched(const bool ignore);
}; };
...@@ -337,7 +349,8 @@ inline CmdLine::CmdLine(const std::string& m, ...@@ -337,7 +349,8 @@ inline CmdLine::CmdLine(const std::string& m,
_output(0), _output(0),
_handleExceptions(true), _handleExceptions(true),
_userSetOutput(false), _userSetOutput(false),
_helpAndVersion(help) _helpAndVersion(help),
_ignoreUnmatched(false)
{ {
_constructor(); _constructor();
} }
...@@ -470,7 +483,7 @@ inline void CmdLine::parse(std::vector<std::string>& args) ...@@ -470,7 +483,7 @@ inline void CmdLine::parse(std::vector<std::string>& args)
if ( !matched && _emptyCombined( args[i] ) ) if ( !matched && _emptyCombined( args[i] ) )
matched = true; matched = true;
if ( !matched && !Arg::ignoreRest() ) if ( !matched && !Arg::ignoreRest() && !_ignoreUnmatched)
throw(CmdLineParseException("Couldn't find match " throw(CmdLineParseException("Couldn't find match "
"for argument", "for argument",
args[i])); args[i]));
...@@ -623,6 +636,11 @@ inline void CmdLine::reset() ...@@ -623,6 +636,11 @@ inline void CmdLine::reset()
_progName.clear(); _progName.clear();
} }
inline void CmdLine::ignoreUnmatched(const bool ignore)
{
_ignoreUnmatched = ignore;
}
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
//End CmdLine.cpp //End CmdLine.cpp
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment