GPBUnknownField_PackagePrivate.h 662 B

123456789101112131415161718192021222324
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. //
  4. // 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
  7. #import <Foundation/Foundation.h>
  8. #import "GPBUnknownField.h"
  9. @class GPBCodedOutputStream;
  10. @interface GPBUnknownField ()
  11. - (void)writeToOutput:(GPBCodedOutputStream *)output;
  12. - (size_t)serializedSize;
  13. - (void)writeAsMessageSetExtensionToOutput:(GPBCodedOutputStream *)output;
  14. - (size_t)serializedSizeAsMessageSetExtension;
  15. - (void)mergeFromField:(GPBUnknownField *)other;
  16. @end