blob: 44970bfece13eb5a45025bb6156cc4f9113476ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <memory>
#include <Swiften/Base/API.h>
#include <Swiften/Base/String.h>
#include <Swiften/Serializer/XML/XMLNode.h>
namespace Swift {
class SWIFTEN_API XMLTextNode : public XMLNode {
public:
typedef std::shared_ptr<XMLTextNode> ref;
XMLTextNode(const std::string& text) : text_(text) {
String::replaceAll(text_, '&', "&"); // Should come first
String::replaceAll(text_, '<', "<");
String::replaceAll(text_, '>', ">");
}
std::string serialize() {
return text_;
}
static ref create(const std::string& text) {
return ref(new XMLTextNode(text));
}
private:
std::string text_;
};
}
|