プロトコル定義ファイルを別のプロトコルファイルに含めたい。例えば:
// base.proto:
message P_EndPoint {
required int32 id = 1;
required string Host = 2;
required int32 port = 3;
}
次に別のファイルで:
communication.proto:
// somehow include `base.proto'
// ...
message P_CommunicationProtocol {
required CP_MessageType type = 1;
optional int32 id = 2;
optional P_EndPoint identity = 3;
repeated P_EndPoint others = 4;
}
// ...
(注:developer.google.comは私のロケールでは使用できません)
import "myproject/base.proto";
ドキュメント: http://developers.google.com/protocol-buffers/docs/proto#other