mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
13 lines
196 B
C++
13 lines
196 B
C++
|
#include <xlnt/xlnt.hpp>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
xlnt::workbook wb;
|
||
|
|
||
|
const auto password = std::string("secret");
|
||
|
wb.load("data/encrypted.xlsx", password);
|
||
|
wb.save("data/decrypted.xlsx");
|
||
|
|
||
|
return 0;
|
||
|
}
|