mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-03-12 07:49:45 +00:00
15 lines
196 B
C++
15 lines
196 B
C++
#ifndef PARQUET_TABLE_H
|
|
#define PARQUET_TABLE_H
|
|
|
|
#include <string>
|
|
|
|
class ParquetTable {
|
|
public:
|
|
ParquetTable(std::string file);
|
|
std::string CreateStatement();
|
|
std::string file;
|
|
|
|
};
|
|
|
|
#endif
|