Sign in
skia
/
external
/
github.com
/
skia-dev
/
delaunator-cpp
/
faaec71766183904a5c43867264fbbcbf6ef2d77
/
.
/
src
/
json-helpers.h
blob: e48f3c9b2a3083906cd08998df08b2dde4254688 [
file
] [
log
] [
blame
]
#pragma
once
#include
<string>
#include
<vector>
namespace
json_helpers
{
std
::
string
read_file
(
const
char
*
filename
);
std
::
vector
<double>
get_geo_json_points
(
const
std
::
string
&
json
);
std
::
vector
<double>
get_array_points
(
const
std
::
string
&
json
);
}