Revision 945d80400b6c3bdbd73606a19351cb45c52e707d authored by Eric Fischer on 02 March 2019, 00:22:00 UTC, committed by GitHub on 02 March 2019, 00:22:00 UTC
Fix reading of MultiLineStrings in Geobuf input
2 parent s 907ddeb + 1bc475b
Raw File
evaluator.hpp
#ifndef EVALUATOR_HPP
#define EVALUATOR HPP

#include <map>
#include <string>
#include <set>
#include "jsonpull/jsonpull.h"
#include "mvt.hpp"

bool evaluate(std::map<std::string, mvt_value> const &feature, std::string const &layer, json_object *filter, std::set<std::string> &exclude_attributes);
json_object *parse_filter(const char *s);
json_object *read_filter(const char *fname);

#endif
back to top