1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- * Copyright 2023 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /* Automatically generated nanopb constant definitions */
- /* Generated by nanopb-0.3.9.8 */
- #include "empty.nanopb.h"
- #include "Firestore/core/src/nanopb/pretty_printing.h"
- namespace firebase {
- namespace firestore {
- using nanopb::PrintEnumField;
- using nanopb::PrintHeader;
- using nanopb::PrintMessageField;
- using nanopb::PrintPrimitiveField;
- using nanopb::PrintTail;
- /* @@protoc_insertion_point(includes) */
- #if PB_PROTO_HEADER_VERSION != 30
- #error Regenerate this file with the current version of nanopb generator.
- #endif
- const pb_field_t google_protobuf_Empty_fields[1] = {
- PB_LAST_FIELD
- };
- std::string google_protobuf_Empty::ToString(int indent) const {
- std::string tostring_header = PrintHeader(indent, "Empty", this);
- std::string tostring_result;
- bool is_root = indent == 0;
- if (!tostring_result.empty() || is_root) {
- std::string tostring_tail = PrintTail(indent);
- return tostring_header + tostring_result + tostring_tail;
- } else {
- return "";
- }
- }
- } // namespace firestore
- } // namespace firebase
- /* @@protoc_insertion_point(eof) */
|