mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
12 lines
205 B
C++
12 lines
205 B
C++
#include <iostream>
|
|
#include <arrow/api.h>
|
|
|
|
namespace xlnt {
|
|
namespace arrow {
|
|
|
|
void xlsx2arrow(std::istream &s, ::arrow::Table &table);
|
|
void arrow2xlsx(const ::arrow::Table &table, std::istream &s);
|
|
|
|
}
|
|
}
|