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 8// Author: liujisi@google.com (Pherl Liu) 9 10syntax = "proto2"; 11 12package objc.protobuf.tests.public_import; 13 14option objc_class_prefix = "PublicImport"; 15 16message Message { 17 optional int32 e = 1; 18} 19