diff options
| author | monster <[email protected]> | 2022-02-10 16:47:19 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:19 +0300 |
| commit | b23c1d7a8015c2006a148fd93b84cdeb0aee17a3 (patch) | |
| tree | 9814fbd1c3effac9b8377c5d604b367b14e2db55 /library/cpp/yson/format.h | |
| parent | dd76ae1f6213d065375ab296699f764faafbe5bd (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yson/format.h')
| -rw-r--r-- | library/cpp/yson/format.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/library/cpp/yson/format.h b/library/cpp/yson/format.h index c2bad91a6a6..2ff6dc9f6e2 100644 --- a/library/cpp/yson/format.h +++ b/library/cpp/yson/format.h @@ -1,25 +1,25 @@ -#pragma once - -#include "token.h" - +#pragma once + +#include "token.h" + namespace NYson { //////////////////////////////////////////////////////////////////////////////// - + const ETokenType BeginListToken = LeftBracket; const ETokenType EndListToken = RightBracket; - + const ETokenType BeginMapToken = LeftBrace; const ETokenType EndMapToken = RightBrace; - + const ETokenType BeginAttributesToken = LeftAngle; const ETokenType EndAttributesToken = RightAngle; - + const ETokenType ListItemSeparatorToken = Semicolon; const ETokenType KeyedItemSeparatorToken = Semicolon; const ETokenType KeyValueSeparatorToken = Equals; - + const ETokenType EntityToken = Hash; - + //////////////////////////////////////////////////////////////////////////////// - + } // namespace NYson |
