Revision a3150642d3eda30b0d3acb6e834e7744a1351915 authored by Eric Fischer on 07 November 2018, 18:36:04 UTC, committed by GitHub on 07 November 2018, 18:36:04 UTC
chore: ignore geobuf tests files and node_modules
2 parent s b8ffdda + 752f77d
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