tippecanoe/main.hpp

36 lines
614 B
C++
Raw Normal View History

#ifndef MAIN_HPP
#define MAIN_HPP
#include <stddef.h>
struct index {
2017-11-07 23:20:17 +00:00
long long start = 0;
long long end = 0;
unsigned long long ix = 0;
short segment = 0;
unsigned short t : 2;
unsigned long long seq : (64 - 18); // pack with segment and t to stay in 32 bytes
2017-11-07 23:20:17 +00:00
index()
: t(0),
seq(0) {
}
};
2017-11-07 23:20:17 +00:00
void checkdisk(std::vector<struct reader> *r);
extern int geometry_scale;
extern int quiet;
extern size_t CPUS;
extern size_t TEMP_FILES;
extern size_t max_tile_size;
int mkstemp_cloexec(char *name);
FILE *fopen_oflag(const char *name, const char *mode, int oflag);
2017-07-07 05:28:35 +00:00
#define MAX_ZOOM 24
#endif