38 lines
784 B
C++
38 lines
784 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#include <exml/Text.h>
|
|
#include <exml/internal/Text.h>
|
|
#include <exml/debug.h>
|
|
#include <regex>
|
|
|
|
exml::Text::Text(ememory::SharedPtr<exml::internal::Node> _internalNode) :
|
|
exml::Node(_internalNode) {
|
|
if (m_data == nullptr) {
|
|
return;
|
|
}
|
|
if (m_data->isText() == false) {
|
|
// try to set wrong type inside ... ==> remove it ...
|
|
m_data = nullptr;
|
|
}
|
|
}
|
|
|
|
exml::Text::Text(const exml::Text& _obj) :
|
|
exml::Node(_obj.m_data) {
|
|
|
|
}
|
|
|
|
exml::Text::Text(const std::string& _data) :
|
|
exml::Node() {
|
|
m_data = exml::internal::Text::create(_data);
|
|
}
|
|
|
|
exml::Text& exml::Text::operator= (const exml::Text& _obj) {
|
|
m_data = _obj.m_data;
|
|
return *this;
|
|
}
|
|
|