diff options
| author | Taylor C. Richberger <Taywee@gmx.com> | 2016-06-29 10:24:53 -0600 | 
|---|---|---|
| committer | Taylor C. Richberger <Taywee@gmx.com> | 2016-06-29 10:24:53 -0600 | 
| commit | e3ee77f0913132f9fd11cb7a402f4436d4749485 (patch) | |
| tree | ad26d7fe6248ca23953c4ef08d76ce27e162c54f | |
| parent | Merge branch '20-allow-an-argument-to-be-a-kick-out' into 'master' (diff) | |
| download | args.hxx-e3ee77f0913132f9fd11cb7a402f4436d4749485.tar.xz | |
bump minor version4.3.0
| -rw-r--r-- | Doxyfile | 2 | ||||
| -rw-r--r-- | args.hxx | 2 | 
2 files changed, 3 insertions, 1 deletions
| @@ -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 @@ -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; | 
