mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 23:31:38 +08:00
21 lines
362 B
C++
21 lines
362 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_xml.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "XText.h"
|
|
#include "XNode.h"
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
namespace XML
|
|
{
|
|
|
|
XText::XText(const XNode& xnode)
|
|
: base(boost::dynamic_pointer_cast<Private::Text>(xnode.get_ptr())),
|
|
Value(m_ptr->Value)
|
|
{
|
|
}
|
|
|
|
|
|
} // namespace XML
|