mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
22 lines
377 B
C++
22 lines
377 B
C++
#pragma once
|
|
|
|
#include <xlnt/utils/string.hpp>
|
|
|
|
#include <xlnt/xlnt_config.hpp>
|
|
|
|
namespace xlnt {
|
|
|
|
class xml_document;
|
|
class xml_node;
|
|
|
|
class XLNT_CLASS xml_serializer
|
|
{
|
|
public:
|
|
static string serialize(const xml_document &xml);
|
|
static xml_document deserialize(const string &xml_string);
|
|
|
|
static string serialize_node(const xml_node &xml);
|
|
};
|
|
|
|
} // namespace xlnt
|