xlnt/source/style_writer.cpp

16 lines
286 B
C++
Raw Normal View History

2014-06-06 04:19:31 +08:00
#include "writer/style_writer.hpp"
2014-06-05 06:42:17 +08:00
namespace xlnt {
style_writer::style_writer(xlnt::workbook &wb) : wb_(wb)
{
}
std::unordered_map<std::size_t, std::string> style_writer::get_style_by_hash() const
{
return std::unordered_map<std::size_t, std::string>();
}
} // namespace xlnt