Files
2023-12-02 21:04:40 +00:00

19 lines
381 B
C++

/*! \file */
#ifndef _TILE_WORKER_H
#define _TILE_WORKER_H
#include "tile_data.h"
#include "shared_data.h"
/// Start function for worker threads
void outputProc(
SharedData& sharedData,
const SourceList& sources,
const AttributeStore& attributeStore,
const std::vector<std::vector<OutputObjectID>>& data,
TileCoordinates coordinates,
uint zoom
);
#endif //_TILE_WORKER_H