aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/protobuf/json/name_generator.h
diff options
context:
space:
mode:
authorArslan Urtashev <urtashev@gmail.com>2022-02-10 16:48:55 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:55 +0300
commit1136f2ce7cce7bcc84e695272c0d92d4eb900c2b (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/protobuf/json/name_generator.h
parentb97740540e7302cec9efa181e106ae1990a0cc1c (diff)
downloadydb-1136f2ce7cce7bcc84e695272c0d92d4eb900c2b.tar.gz
Restoring authorship annotation for Arslan Urtashev <urtashev@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/protobuf/json/name_generator.h')
-rw-r--r--library/cpp/protobuf/json/name_generator.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/library/cpp/protobuf/json/name_generator.h b/library/cpp/protobuf/json/name_generator.h
index e9ce067800..2b5361bee2 100644
--- a/library/cpp/protobuf/json/name_generator.h
+++ b/library/cpp/protobuf/json/name_generator.h
@@ -1,18 +1,18 @@
-#pragma once
-
-#include <util/generic/string.h>
-
-#include <functional>
-
-namespace google {
+#pragma once
+
+#include <util/generic/string.h>
+
+#include <functional>
+
+namespace google {
namespace protobuf {
class FieldDescriptor;
class EnumValueDescriptor;
}
}
-
-namespace NProtobufJson {
+
+namespace NProtobufJson {
using TNameGenerator = std::function<TString(const google::protobuf::FieldDescriptor&)>;
using TEnumValueGenerator = std::function<TString(const google::protobuf::EnumValueDescriptor&)>;
-
+
}