mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
GPBUnknownFieldSet and the related apis have been replaced by GPBUnknownFields. The new api allows the Objective-C Protobuf implementation to be fully conformant around requirements for parsing/re-serialization of unknown fields. PiperOrigin-RevId: 684140581
36 lines
1 KiB
Objective-C
36 lines
1 KiB
Objective-C
// Protocol Buffers - Google's data interchange format
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
// clang-format off
|
|
#import "GPBBootstrap.h"
|
|
// clang-format on
|
|
|
|
#import "GPBArray.h"
|
|
#import "GPBCodedInputStream.h"
|
|
#import "GPBCodedOutputStream.h"
|
|
#import "GPBDescriptor.h"
|
|
#import "GPBDictionary.h"
|
|
#import "GPBExtensionRegistry.h"
|
|
#import "GPBMessage.h"
|
|
#import "GPBRootObject.h"
|
|
#import "GPBUnknownField.h"
|
|
#import "GPBUnknownFields.h"
|
|
#import "GPBUtilities.h"
|
|
#import "GPBWellKnownTypes.h"
|
|
#import "GPBWireFormat.h"
|
|
|
|
// Well-known proto types
|
|
#import "GPBAny.pbobjc.h"
|
|
#import "GPBApi.pbobjc.h"
|
|
#import "GPBDuration.pbobjc.h"
|
|
#import "GPBEmpty.pbobjc.h"
|
|
#import "GPBFieldMask.pbobjc.h"
|
|
#import "GPBSourceContext.pbobjc.h"
|
|
#import "GPBStruct.pbobjc.h"
|
|
#import "GPBTimestamp.pbobjc.h"
|
|
#import "GPBType.pbobjc.h"
|
|
#import "GPBWrappers.pbobjc.h"
|