mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
14 lines
234 B
C++
14 lines
234 B
C++
|
#include <xlnt/reader/workbook_reader.hpp>
|
||
|
#include <xlnt/workbook/workbook.hpp>
|
||
|
|
||
|
namespace xlnt {
|
||
|
|
||
|
xlnt::workbook load_workbook(const std::vector<std::uint8_t> &bytes)
|
||
|
{
|
||
|
xlnt::workbook wb;
|
||
|
wb.load(bytes);
|
||
|
return wb;
|
||
|
}
|
||
|
|
||
|
}
|