xlnt/source/detail/xml_document_impl.hpp

18 lines
240 B
C++
Raw Normal View History

2015-10-31 06:54:04 +08:00
#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