Lines Matching full:route_guide
35 The example code for our tutorial is in [examples/cpp/route_guide](route_guide).
46 [`examples/protos/route_guide.proto`](../protos/route_guide.proto).
130 For simplicity, we've provided a [Makefile](route_guide/Makefile) that runs
136 $ make route_guide.grpc.pb.cc route_guide.pb.cc
142 …protos --grpc_out=. --plugin=protoc-gen-grpc=`which grpc_cpp_plugin` ../../protos/route_guide.proto
143 $ protoc -I ../../protos --cpp_out=. ../../protos/route_guide.proto
147 - `route_guide.pb.h`, the header which declares your generated message classes
148 - `route_guide.pb.cc`, which contains the implementation of your message classes
149 - `route_guide.grpc.pb.h`, the header which declares your generated service
151 - `route_guide.grpc.pb.cc`, which contains the implementation of your service
179 [route_guide/route_guide_server.cc](route_guide/route_guide_server.cc). Let's
327 [route_guide/route_guide_client.cc](route_guide/route_guide_client.cc).