Revision ba1c34320451407600cefdc7066a82646617a6ca authored by Eric Fischer on 30 November 2017, 00:24:48 UTC, committed by Eric Fischer on 30 November 2017, 00:24:48 UTC
1 parent ca028dd
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 force, bool forcetable);

#endif
back to top