Revision b6b35102c75f451b1ca85e460568f22af781c297 authored by Eric Fischer on 11 April 2018, 00:14:26 UTC, committed by Eric Fischer on 11 April 2018, 00:14:26 UTC
1 parent 9cce5f8
Raw File
evaluator.hpp
#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_object *filter);
json_object *parse_filter(const char *s);
json_object *read_filter(const char *fname);

#endif
back to top