#include "chg_service.h"
+#include "resetable_utils.h"
+
#include "stg/service_conf.h"
#include "stg/common.h"
using namespace STG;
-namespace
-{
-
-template <typename T>
-void appendResetable(std::ostream & stream, const std::string & name, const T & value)
-{
-if (!value.empty())
- stream << "<" << name << " value=\"" << value.data() << "\"/>";
-}
-
-} // namespace anonymous
-
-std::string CHG_SERVICE::Serialize(const SERVICE_CONF_RES & conf)
+std::string CHG_SERVICE::Serialize(const SERVICE_CONF_RES & conf, const std::string & /*encoding*/)
{
std::ostringstream stream;
appendResetable(stream, "name", conf.name);
-appendResetable(stream, "comment", conf.comment);
+appendResetable(stream, "comment", MaybeEncode(conf.comment));
appendResetable(stream, "cost", conf.cost);
appendResetable(stream, "payDay", conf.payDay);