/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#ifndef SWIFTEN_XMLRawTextNode_H
#define SWIFTEN_XMLRawTextNode_H

#include "Swiften/Serializer/XML/XMLNode.h"

namespace Swift {
	class XMLRawTextNode : public XMLNode {
		public:
			XMLRawTextNode(const String& text) : text_(text) {
			}

			String serialize() {
				return text_;
			}

		private:
			String text_;
	};
}

#endif