xlnt/source/detail/xml_document_impl.hpp

18 lines
231 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
{
string encoding;
2015-10-31 06:54:04 +08:00
pugi::xml_document doc;
};
2015-10-31 06:54:04 +08:00
} // namespace detail
} // namespace xlnt