diff options
| -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; | 
