mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
18 lines
236 B
C++
18 lines
236 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <detail/include_pugixml.hpp>
|
|
|
|
namespace xlnt {
|
|
namespace detail {
|
|
|
|
struct xml_document_impl
|
|
{
|
|
std::string encoding;
|
|
pugi::xml_document doc;
|
|
};
|
|
|
|
} // namespace detail
|
|
} // namespace xlnt
|