summaryrefslogtreecommitdiffstats
blob: b0f8d015dcb51defa3525d00c66e609961c0be05 (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-2015 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <boost/shared_ptr.hpp>

#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 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_;
    };
}