swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: e000bcc261e858b93892c471d732c5aef4c4cf3f authored by Eric Fischer on 08 September 2017, 17:16:19 UTC
Merge pull request #463 from mapbox/stringpool
Tip revision: e000bcc
dirtiles.hpp
#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
back to top