mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-05-07 03:18:09 +00:00
12 lines
160 B
C++
12 lines
160 B
C++
#include <iostream>
|
|
|
|
#ifndef LOGGING_HPP
|
|
#define LOGGING_HPP
|
|
|
|
struct json_logger {
|
|
bool json_enabled = false;
|
|
|
|
void progress_tile(double progress);
|
|
};
|
|
|
|
#endif |