mirror of
https://github.com/systemed/tilemaker.git
synced 2026-05-07 08:50:33 -04:00
12 lines
363 B
C++
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
|