summaryrefslogtreecommitdiff
path: root/louloulibs/xmpp/xmpp_stanza.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'louloulibs/xmpp/xmpp_stanza.cpp')
-rw-r--r--louloulibs/xmpp/xmpp_stanza.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/louloulibs/xmpp/xmpp_stanza.cpp b/louloulibs/xmpp/xmpp_stanza.cpp
index c66b4be..aec91a7 100644
--- a/louloulibs/xmpp/xmpp_stanza.cpp
+++ b/louloulibs/xmpp/xmpp_stanza.cpp
@@ -5,6 +5,7 @@
#include <stdexcept>
#include <iostream>
+#include <sstream>
#include <string.h>
@@ -207,21 +208,21 @@ const std::string XmlNode::get_name() const
std::string XmlNode::to_string() const
{
- std::string res("<");
- res += this->name;
+ std::ostringstream res;
+ res << "<" << this->name;
for (const auto& it: this->attributes)
- res += " " + it.first + "='" + sanitize(it.second) + "'";
+ res << " " << it.first << "='" << sanitize(it.second) + "'";
if (!this->has_children() && this->inner.empty())
- res += "/>";
+ res << "/>";
else
{
- res += ">" + sanitize(this->inner);
+ res << ">" + sanitize(this->inner);
for (const auto& child: this->children)
- res += child->to_string();
- res += "</" + this->get_name() + ">";
+ res << child->to_string();
+ res << "</" << this->get_name() << ">";
}
- res += sanitize(this->tail);
- return res;
+ res << sanitize(this->tail);
+ return res.str();
}
bool XmlNode::has_children() const