Revision 5a09fcc35eee90e7e85b0256cccc4b398e976fc0 authored by Eric Fischer on 21 July 2017, 21:27:30 UTC, committed by Eric Fischer on 21 July 2017, 21:27:30 UTC
1 parent a373c25
Raw File
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