mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
17 lines
269 B
C++
17 lines
269 B
C++
|
#pragma once
|
||
|
|
||
|
#include <detail/include_pugixml.hpp>
|
||
|
|
||
|
namespace xlnt {
|
||
|
namespace detail {
|
||
|
|
||
|
struct xml_node_impl
|
||
|
{
|
||
|
xml_node_impl() {}
|
||
|
explicit xml_node_impl(pugi::xml_node n) : node(n) {}
|
||
|
pugi::xml_node node;
|
||
|
};
|
||
|
|
||
|
} // namespace detail
|
||
|
} // namespace xlnt
|