blob: 65d645940f017f79459f6edab3f08c2f547c4321 (
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
 | /*
 * Copyright (c) 2010-2015 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
#pragma once
#include <Swiften/Base/API.h>
#include <Swiften/Serializer/XML/XMLNode.h>
#include <Swiften/Base/String.h>
namespace Swift {
	class SWIFTEN_API XMLTextNode : public XMLNode {
		public:
			typedef boost::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_;
	};
}
 |