Revision f2f76082dfcbfa39a6dfecb5afa1bf961316a51b authored by Eric Fischer on 01 December 2017, 22:35:03 UTC, committed by GitHub on 01 December 2017, 22:35:03 UTC
Clean up duplicated code for reading tiles from a directory
2 parent s ad86d06 + e4743d9
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