aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/getopt/small/last_getopt_support.h
diff options
context:
space:
mode:
authornga <nga@yandex-team.ru>2022-02-10 16:48:09 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:09 +0300
commit1f553f46fb4f3c5eec631352cdd900a0709016af (patch)
treea231fba2c03b440becaea6c86a2702d0bfb0336e /library/cpp/getopt/small/last_getopt_support.h
parentc4de7efdedc25b49cbea74bd589eecb61b55b60a (diff)
downloadydb-1f553f46fb4f3c5eec631352cdd900a0709016af.tar.gz
Restoring authorship annotation for <nga@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/getopt/small/last_getopt_support.h')
-rw-r--r--library/cpp/getopt/small/last_getopt_support.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/library/cpp/getopt/small/last_getopt_support.h b/library/cpp/getopt/small/last_getopt_support.h
index 17bed3e614..3ea05733ff 100644
--- a/library/cpp/getopt/small/last_getopt_support.h
+++ b/library/cpp/getopt/small/last_getopt_support.h
@@ -1,36 +1,36 @@
#pragma once
-
+
#include <util/string/cast.h>
#include <util/generic/string.h>
#include <util/generic/vector.h>
-#include <util/generic/utility.h>
+#include <util/generic/utility.h>
#include <util/generic/yexception.h>
-
-namespace NLastGetopt {
+
+namespace NLastGetopt {
class TOpt;
class TOpts;
class TOptsParser;
class TOptsParseResult;
-
+
/// base of all getopt exceptions
class TException: public yexception {
};
-
+
/// TOpts configuration is incorrect
class TConfException: public TException {
};
-
+
/// User passed incorrect arguments, parsing failed
/// Note: use `throw TUsageException()` instead of `ythrow TUsageException()` to prevent appearence of stacktrace
/// and location of the `ythrow` statment in error messages.
class TUsageException: public TException {
};
-
+
struct IOptHandler {
virtual void HandleOpt(const TOptsParser* parser) = 0;
virtual ~IOptHandler() = default;
};
-
+
namespace NPrivate {
template <typename TpFunc>
class THandlerFunctor0
@@ -94,7 +94,7 @@ namespace NLastGetopt {
class TStoreResultFunctor {
private:
T* Target_;
-
+
public:
TStoreResultFunctor(T* target)
: Target_(target)
@@ -128,7 +128,7 @@ namespace NLastGetopt {
class TStoreValueFunctor {
T* Target;
const TpVal Value;
-
+
public:
template <typename TpArg>
TStoreValueFunctor(T* target, const TpArg& value)
@@ -155,7 +155,7 @@ namespace NLastGetopt {
inline TStringBuf OptFromStringImpl<TStringBuf>(const TStringBuf& value) {
return value;
}
-
+
template <>
inline const char* OptFromStringImpl<const char*>(const TStringBuf& value) {
return value.data();