mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
21 lines
641 B
C++
21 lines
641 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace xlnt {
|
|
|
|
class worksheet;
|
|
|
|
class writer
|
|
{
|
|
public:
|
|
static std::string write_worksheet(worksheet ws);
|
|
static std::string write_worksheet(worksheet ws, const std::vector<std::string> &string_table);
|
|
static std::string write_theme();
|
|
static std::string write_content_types(const std::pair<std::unordered_map<std::string, std::string>, std::unordered_map<std::string, std::string>> &content_types);
|
|
static std::string write_relationships(const std::unordered_map<std::string, std::pair<std::string, std::string>> &relationships);
|
|
};
|
|
|
|
} // namespace xlnt
|