tippecanoe/json_logger.hpp
2022-07-28 11:19:30 -07:00

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