mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
466 B
23 lines
466 B
8 years ago
|
// Test if including generated header file for this file + implicit include of
|
||
|
// multifile2.pb.h still compiles. Used with test_compiles.c.
|
||
|
syntax = "proto2";
|
||
|
|
||
|
import "multifile1.proto";
|
||
|
|
||
|
message Callback2Message {
|
||
|
required TestMessage tstmsg = 1;
|
||
|
required SubMessage submsg = 2;
|
||
|
}
|
||
|
|
||
|
message OneofMessage {
|
||
|
oneof msgs {
|
||
|
StaticMessage tstmsg = 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
message Enums {
|
||
|
required SignedEnum senum = 1;
|
||
|
required UnsignedEnum uenum = 2;
|
||
|
}
|
||
|
|