xlnt/arrow/xlntarrow/xlntarrow.hpp
2017-07-04 17:52:46 -07:00

13 lines
255 B
C++

#include <iostream>
#include <arrow/api.h>
#include <xlnt/xlnt_config.hpp>
namespace xlnt {
namespace arrow {
void XLNT_API xlsx2arrow(std::istream &s, ::arrow::Table &table);
void XLNT_API arrow2xlsx(const ::arrow::Table &table, std::ostream &s);
}
}