aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor C. Richberger <Taywee@gmx.com>2016-06-29 10:24:53 -0600
committerTaylor C. Richberger <Taywee@gmx.com>2016-06-29 10:24:53 -0600
commite3ee77f0913132f9fd11cb7a402f4436d4749485 (patch)
treead26d7fe6248ca23953c4ef08d76ce27e162c54f
parentMerge branch '20-allow-an-argument-to-be-a-kick-out' into 'master' (diff)
downloadargs.hxx-e3ee77f0913132f9fd11cb7a402f4436d4749485.tar.xz
bump minor version4.3.0
-rw-r--r--Doxyfile2
-rw-r--r--args.hxx2
2 files changed, 3 insertions, 1 deletions
diff --git a/Doxyfile b/Doxyfile
index 49b4c39..95e1cd5 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME = "args"
# could be handy for archiving the generated documentation or if some version
# control system is used.
-PROJECT_NUMBER = 4.2.0
+PROJECT_NUMBER = 4.3.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
diff --git a/args.hxx b/args.hxx
index 509a5c3..aab92dd 100644
--- a/args.hxx
+++ b/args.hxx
@@ -398,11 +398,13 @@ namespace args
return name;
}
+ /// Sets a kick-out value for building subparsers
void KickOut(bool kickout) noexcept
{
this->kickout = kickout;
}
+ /// Gets the kick-out value for building subparsers
bool KickOut() const noexcept
{
return kickout;