aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/xml/document/xml-document-decl.h
diff options
context:
space:
mode:
authorfippo <fippo@yandex-team.ru>2022-02-10 16:50:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:08 +0300
commit7bf72dabd2102d9781c1ec7a754579757baa7b90 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/xml/document/xml-document-decl.h
parent3e57c324d47a3a202cb3c5a9648d2f92103d5213 (diff)
downloadydb-7bf72dabd2102d9781c1ec7a754579757baa7b90.tar.gz
Restoring authorship annotation for <fippo@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/xml/document/xml-document-decl.h')
-rw-r--r--library/cpp/xml/document/xml-document-decl.h108
1 files changed, 54 insertions, 54 deletions
diff --git a/library/cpp/xml/document/xml-document-decl.h b/library/cpp/xml/document/xml-document-decl.h
index af8c31a37b..bfda1fb7e6 100644
--- a/library/cpp/xml/document/xml-document-decl.h
+++ b/library/cpp/xml/document/xml-document-decl.h
@@ -263,13 +263,13 @@ namespace NXml {
TConstNode FirstChild() const;
/**
- * get parent node
- * throws exception if has no parent
- */
- TNode Parent();
- TConstNode Parent() const;
-
- /**
+ * get parent node
+ * throws exception if has no parent
+ */
+ TNode Parent();
+ TConstNode Parent() const;
+
+ /**
* get node neighbour
* @param name: neighbour name
* @note if name is empty, returns the next sibling node of type "element"
@@ -307,17 +307,17 @@ namespace NXml {
TNode AddChild(const TConstNode& node);
/**
- * create text child node
- * @param name: child name
- * @param value: node value
- */
- template <class T>
+ * create text child node
+ * @param name: child name
+ * @param value: node value
+ */
+ template <class T>
typename std::enable_if<!std::is_convertible_v<T, TStringBuf>, TNode>::type
AddText(const T& value);
-
+
TNode AddText(TStringBuf value);
- /**
+ /**
* get node attribute
* @param name: attribute name
* throws exception if attribute not found
@@ -398,17 +398,17 @@ namespace NXml {
void DelAttr(TZtStringBuf name);
/**
- * set node application data
- * @param priv: new application data pointer
- */
- void SetPrivate(void* priv);
-
- /**
- * @return application data pointer, passed by SetPrivate
- */
- void* GetPrivate() const;
-
- /**
+ * set node application data
+ * @param priv: new application data pointer
+ */
+ void SetPrivate(void* priv);
+
+ /**
+ * @return application data pointer, passed by SetPrivate
+ */
+ void* GetPrivate() const;
+
+ /**
* get node name
*/
TString Name() const;
@@ -418,7 +418,7 @@ namespace NXml {
*/
TString Path() const;
- /**
+ /**
* get node xml representation
*/
TString ToString(TZtStringBuf enc = "") const {
@@ -430,16 +430,16 @@ namespace NXml {
void SaveAsHtml(IOutputStream& stream, TZtStringBuf enc = "", bool shouldFormat = false) const;
/**
- * get pointer to internal node
- */
- xmlNode* GetPtr();
- const xmlNode* GetPtr() const;
-
- /**
- * check if node is text-only node
- */
- bool IsText() const;
-
+ * get pointer to internal node
+ */
+ xmlNode* GetPtr();
+ const xmlNode* GetPtr() const;
+
+ /**
+ * check if node is text-only node
+ */
+ bool IsText() const;
+
/**
* unlink node from parent and free
*/
@@ -667,27 +667,27 @@ namespace NXml {
}
/**
- * @return application data pointer, passed by SetPrivate
- */
+ * @return application data pointer, passed by SetPrivate
+ */
void* GetPrivate() const {
- return ActualNode.GetPrivate();
- }
-
- /**
- * get pointer to internal node
- */
+ return ActualNode.GetPrivate();
+ }
+
+ /**
+ * get pointer to internal node
+ */
const xmlNode* GetPtr() const {
- return ActualNode.GetPtr();
- }
-
- /**
- * check if node is text-only node
- */
+ return ActualNode.GetPtr();
+ }
+
+ /**
+ * check if node is text-only node
+ */
bool IsText() const {
- return ActualNode.IsText();
- }
-
- /**
+ return ActualNode.IsText();
+ }
+
+ /**
* get node xpath
*/
TString Path() const {