// // json_binder.h // json // // Created by Sam Jaffe on 1/31/16. // Copyright © 2016 Sam Jaffe. All rights reserved. // #ifndef json_parser_h #define json_parser_h #pragma once namespace json { class value; namespace binder { template class visitor; } namespace parser { template void parse(binder::visitor&, char const*); template void parse(binder::visitor&& v, V& s) { parse(v, s); } } } #endif /* json_parser_h */