Files
tilemaker/include/tile_worker.h
2021-04-11 15:54:21 +01:00

12 lines
363 B
C++

/*! \file */
#ifndef _TILE_WORKER_H
#define _TILE_WORKER_H
#include "shared_data.h"
#include <boost/asio/thread_pool.hpp>
/// Start function for worker threads
bool outputProc(boost::asio::thread_pool &pool, SharedData &sharedData, OSMStore &osmStore, std::vector<OutputObjectRef> const &data, TileCoordinates coordinates, uint zoom);
#endif //_TILE_WORKER_H