| OLD | NEW |
| 1 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 2 #error "This file requires ARC support." |
| 3 #endif |
| 4 |
| 1 // Protocol Buffers - Google's data interchange format | 5 // Protocol Buffers - Google's data interchange format |
| 2 // Copyright 2008 Google Inc. All rights reserved. | 6 // Copyright 2008 Google Inc. All rights reserved. |
| 3 // http://code.google.com/p/protobuf/ | 7 // https://developers.google.com/protocol-buffers/ |
| 4 // | 8 // |
| 5 // Redistribution and use in source and binary forms, with or without | 9 // Redistribution and use in source and binary forms, with or without |
| 6 // modification, are permitted provided that the following conditions are | 10 // modification, are permitted provided that the following conditions are |
| 7 // met: | 11 // met: |
| 8 // | 12 // |
| 9 // * Redistributions of source code must retain the above copyright | 13 // * Redistributions of source code must retain the above copyright |
| 10 // notice, this list of conditions and the following disclaimer. | 14 // notice, this list of conditions and the following disclaimer. |
| 11 // * Redistributions in binary form must reproduce the above | 15 // * Redistributions in binary form must reproduce the above |
| 12 // copyright notice, this list of conditions and the following disclaimer | 16 // copyright notice, this list of conditions and the following disclaimer |
| 13 // in the documentation and/or other materials provided with the | 17 // in the documentation and/or other materials provided with the |
| 14 // distribution. | 18 // distribution. |
| 15 // * Neither the name of Google Inc. nor the names of its | 19 // * Neither the name of Google Inc. nor the names of its |
| 16 // contributors may be used to endorse or promote products derived from | 20 // contributors may be used to endorse or promote products derived from |
| 17 // this software without specific prior written permission. | 21 // this software without specific prior written permission. |
| 18 // | 22 // |
| 19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 23 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 20 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 24 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 25 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 26 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 27 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 28 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 29 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 30 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 31 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 32 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 33 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 | 34 |
| 31 // Author: jasonh@google.com (Jason Hsueh) | 35 // Makes sure all the generated headers compile with ARC on. |
| 32 // | |
| 33 // This file is used to test a corner case in the CPP implementation where the | |
| 34 // generated C++ type is available for the extendee, but the extension is | |
| 35 // defined in a file whose C++ type is not in the binary. | |
| 36 | 36 |
| 37 | 37 #import "google/protobuf/Unittest.pbobjc.h" |
| 38 import "google/protobuf/internal/more_extensions.proto"; | 38 #import "google/protobuf/UnittestCustomOptions.pbobjc.h" |
| 39 | 39 #import "google/protobuf/UnittestCycle.pbobjc.h" |
| 40 package google.protobuf.internal; | 40 #import "google/protobuf/UnittestDropUnknownFields.pbobjc.h" |
| 41 | 41 #import "google/protobuf/UnittestEmbedOptimizeFor.pbobjc.h" |
| 42 message DynamicMessageType { | 42 #import "google/protobuf/UnittestEmpty.pbobjc.h" |
| 43 optional int32 a = 1; | 43 #import "google/protobuf/UnittestEnormousDescriptor.pbobjc.h" |
| 44 } | 44 #import "google/protobuf/UnittestImport.pbobjc.h" |
| 45 | 45 #import "google/protobuf/UnittestImportLite.pbobjc.h" |
| 46 extend ExtendedMessage { | 46 #import "google/protobuf/UnittestImportPublic.pbobjc.h" |
| 47 optional int32 dynamic_int32_extension = 100; | 47 #import "google/protobuf/UnittestImportPublicLite.pbobjc.h" |
| 48 optional DynamicMessageType dynamic_message_extension = 101; | 48 #import "google/protobuf/UnittestLite.pbobjc.h" |
| 49 } | 49 #import "google/protobuf/UnittestMset.pbobjc.h" |
| 50 #import "google/protobuf/UnittestNoGenericServices.pbobjc.h" |
| 51 #import "google/protobuf/UnittestObjc.pbobjc.h" |
| 52 #import "google/protobuf/UnittestObjcStartup.pbobjc.h" |
| 53 #import "google/protobuf/UnittestOptimizeFor.pbobjc.h" |
| 54 #import "google/protobuf/UnittestPreserveUnknownEnum.pbobjc.h" |
| 55 #import "google/protobuf/UnittestRuntimeProto2.pbobjc.h" |
| 56 #import "google/protobuf/UnittestRuntimeProto3.pbobjc.h" |
| OLD | NEW |