diff options
author | myltsev <myltsev@yandex-team.ru> | 2022-02-10 16:46:03 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:03 +0300 |
commit | fc361854fd6ee8d747229b090f0b8018e260d1fb (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/xml/document/xml-textreader.h | |
parent | 9166d66c30c23c9e85a7c88185a068987148d23f (diff) | |
download | ydb-fc361854fd6ee8d747229b090f0b8018e260d1fb.tar.gz |
Restoring authorship annotation for <myltsev@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/xml/document/xml-textreader.h')
-rw-r--r-- | library/cpp/xml/document/xml-textreader.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/xml/document/xml-textreader.h b/library/cpp/xml/document/xml-textreader.h index 1507bfe22c..ab4c329d26 100644 --- a/library/cpp/xml/document/xml-textreader.h +++ b/library/cpp/xml/document/xml-textreader.h @@ -5,8 +5,8 @@ #include <contrib/libs/libxml/include/libxml/xmlreader.h> -#include <library/cpp/string_utils/ztstrbuf/ztstrbuf.h> - +#include <library/cpp/string_utils/ztstrbuf/ztstrbuf.h> + #include <util/generic/noncopyable.h> #include <util/generic/ptr.h> #include <util/generic/strbuf.h> @@ -222,21 +222,21 @@ namespace NXml { * Provides the value of the attribute with the specified qualified name. * @param name the qualified name of the attribute */ - TString GetAttribute(TZtStringBuf name) const; + TString GetAttribute(TZtStringBuf name) const; /** * Provides the value of the specified attribute. * @param localName the local name of the attribute * @param nsUri the namespace URI of the attribute */ - TString GetAttribute(TZtStringBuf localName, TZtStringBuf nsUri) const; + TString GetAttribute(TZtStringBuf localName, TZtStringBuf nsUri) const; /** * Resolves a namespace prefix in the scope of the current element. * @param prefix the prefix whose namespace URI is to be resolved. To return the default namespace, specify empty string. * @return a string containing the namespace URI to which the prefix maps. */ - TString LookupNamespace(TZtStringBuf prefix) const; + TString LookupNamespace(TZtStringBuf prefix) const; /** * Moves the position of the current instance to the attribute with the specified index relative to the containing element. @@ -250,7 +250,7 @@ namespace NXml { * @param name the qualified name of the attribute * @return true in case of success, false if not found */ - bool MoveToAttribute(TZtStringBuf name); + bool MoveToAttribute(TZtStringBuf name); /** * Moves the position of the current instance to the attribute with the specified local name and namespace URI. @@ -258,7 +258,7 @@ namespace NXml { * @param nsUri the namespace URI of the attribute * @return true in case of success, false if not found */ - bool MoveToAttribute(TZtStringBuf localName, TZtStringBuf nsUri); + bool MoveToAttribute(TZtStringBuf localName, TZtStringBuf nsUri); /** * Moves the position of the current instance to the first attribute associated with the current node. |