Revision 370252731aec4718aa37d40d6ab285776a339d50 authored by Eric Fischer on 29 May 2019, 01:22:28 UTC, committed by Eric Fischer on 29 May 2019, 01:22:28 UTC
1 parent b550c7b
Raw File
geojson-loop.hpp
#include <string>
#include "jsonpull/jsonpull.h"

struct json_feature_action {
	std::string fname;

	virtual int add_feature(json_object *geometry, bool geometrycollection, json_object *properties, json_object *id, json_object *tippecanoe, json_object *feature) = 0;
	virtual void check_crs(json_object *j) = 0;
};

void parse_json(json_feature_action *action, json_pull *jp);
back to top