blob: 17304f312f30b0e9c6b5b215bb39c93bf5211864 [file] [log] [blame]
Thomas Van Lenten30650d82015-05-01 08:57:16 -04001// Protocol Buffers - Google's data interchange format
2// Copyright 2008 Google Inc. All rights reserved.
Thomas Van Lenten30650d82015-05-01 08:57:16 -04003//
Joshua Haberman44bd65b2023-09-08 17:43:14 -07004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file or at
6// https://developers.google.com/open-source/licenses/bsd
Thomas Van Lenten30650d82015-05-01 08:57:16 -04007
8#import <Foundation/Foundation.h>
9
Thomas Van Lentend846b0b2015-06-08 16:24:57 -040010#import "GPBUnknownField.h"
Thomas Van Lenten30650d82015-05-01 08:57:16 -040011
12@class GPBCodedOutputStream;
13
Thomas Van Lentend846b0b2015-06-08 16:24:57 -040014@interface GPBUnknownField ()
Thomas Van Lenten30650d82015-05-01 08:57:16 -040015
Thomas Van Lenten30650d82015-05-01 08:57:16 -040016- (void)writeToOutput:(GPBCodedOutputStream *)output;
17- (size_t)serializedSize;
18
19- (void)writeAsMessageSetExtensionToOutput:(GPBCodedOutputStream *)output;
20- (size_t)serializedSizeAsMessageSetExtension;
21
Thomas Van Lentend846b0b2015-06-08 16:24:57 -040022- (void)mergeFromField:(GPBUnknownField *)other;
Thomas Van Lenten30650d82015-05-01 08:57:16 -040023
24@end