mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 15:49:49 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@52942 954022d7-b5bf-4e40-9824-e11837661b57
17 lines
314 B
C++
17 lines
314 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_xml.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "XText.h"
|
|
#include "XNode.h"
|
|
|
|
namespace XML
|
|
{
|
|
XText::XText(const XNode& xnode)
|
|
: base(xnode.get_ptr().smart_dynamic_cast<Private::Text>()),
|
|
Value(m_ptr->Value)
|
|
{
|
|
}
|
|
|
|
} // namespace XML
|