mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 04:18:01 +00:00
12 lines
246 B
C++
12 lines
246 B
C++
#ifndef EVALUATOR_HPP
|
|
#define EVALUATOR HPP
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include "jsonpull/jsonpull.h"
|
|
#include "mvt.hpp"
|
|
|
|
bool evaluate(std::map<std::string, mvt_value> const &feature, std::string const &layer, json_pull *filter);
|
|
|
|
#endif
|