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
|