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 | 9166d66c30c23c9e85a7c88185a068987148d23f (patch) | |
tree | 421bdcec5755d9e441c485560aab5ab8d74c7475 /library/cpp/xml/document/xml-textreader.h | |
parent | 8d3a5ed3a188a34167eaee54f1691ce5c9edf2f3 (diff) | |
download | ydb-9166d66c30c23c9e85a7c88185a068987148d23f.tar.gz |
Restoring authorship annotation for <myltsev@yandex-team.ru>. Commit 1 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 ab4c329d26..1507bfe22c 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. |