summaryrefslogtreecommitdiffstats
blob: 62631f0264ea2555984f09190d7e69921472f069 (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
/*
 * Copyright (c) 2010 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <Swiften/Serializer/XML/XMLNode.h>
#include <Swiften/Base/String.h>

namespace Swift {
	class XMLTextNode : public XMLNode {
		public:
			typedef boost::shared_ptr<XMLTextNode> ref;

			XMLTextNode(const std::string& text) : text_(text) {
				String::replaceAll(text_, '&', "&amp;"); // Should come first
				String::replaceAll(text_, '<', "&lt;");
				String::replaceAll(text_, '>', "&gt;");
			}

			std::string serialize() {
				return text_;
			}

			static ref create(const std::string& text) {
				return ref(new XMLTextNode(text));
			}

		private:
			std::string text_;
	};
}