mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-21 03:55:00 +00:00
54cbc570f1
The -f option will clear the directory now, as with mbtiles.
13 lines
248 B
C++
13 lines
248 B
C++
#include <string>
|
|
|
|
#ifndef DIRTILES_HPP
|
|
#define DIRTILES_HPP
|
|
|
|
std::string dir_read_tile(std::string pbfPath);
|
|
|
|
void dir_write_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf);
|
|
|
|
void check_dir(const char *d, bool rm);
|
|
|
|
#endif
|