11cb0ef41Sopenharmony_ci// This file is generated by Parser_h.template. 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ci// Copyright 2016 The Chromium Authors. All rights reserved. 41cb0ef41Sopenharmony_ci// Use of this source code is governed by a BSD-style license that can be 51cb0ef41Sopenharmony_ci// found in the LICENSE file. 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ci#ifndef {{"_".join(config.protocol.namespace)}}_Parser_h 81cb0ef41Sopenharmony_ci#define {{"_".join(config.protocol.namespace)}}_Parser_h 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ci//#include "Forward.h" 111cb0ef41Sopenharmony_ci//#include "Values.h" 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ci{% for namespace in config.protocol.namespace %} 141cb0ef41Sopenharmony_cinamespace {{namespace}} { 151cb0ef41Sopenharmony_ci{% endfor %} 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ci{{config.lib.export_macro}} std::unique_ptr<Value> parseJSONCharacters(const uint8_t*, unsigned); 181cb0ef41Sopenharmony_ci{{config.lib.export_macro}} std::unique_ptr<Value> parseJSONCharacters(const uint16_t*, unsigned); 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci{% for namespace in config.protocol.namespace %} 211cb0ef41Sopenharmony_ci} // namespace {{namespace}} 221cb0ef41Sopenharmony_ci{% endfor %} 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci#endif // !defined({{"_".join(config.protocol.namespace)}}_Parser_h) 25