From 80de3b8645d25b11cd269e7a5b6b91163b2944a0 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Wed, 29 Oct 2014 18:50:12 -0400 Subject: [PATCH] Changed AlprImpl::createJsonObj to public --- src/openalpr/alpr_impl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openalpr/alpr_impl.h b/src/openalpr/alpr_impl.h index 3384627..41951d9 100644 --- a/src/openalpr/alpr_impl.h +++ b/src/openalpr/alpr_impl.h @@ -85,6 +85,8 @@ namespace alpr static AlprResults fromJson(std::string json); static std::string getVersion(); + static cJSON* createJsonObj(const AlprPlateResult* result); + Config* config; bool isLoaded(); @@ -101,7 +103,6 @@ namespace alpr std::vector convertRects(std::vector regionsOfInterest); - static cJSON* createJsonObj(const AlprPlateResult* result); }; }