aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/cpp_generator.cc
diff options
context:
space:
mode:
authorGravatar yangg <yangg@google.com>2015-01-09 15:31:05 -0800
committerGravatar Nicolas Noble <nnoble@google.com>2015-01-12 11:22:02 -0800
commit1b151096d1466191bc702aeec3ec76dd2801f38e (patch)
tree60607b6d1503b64f5c87273f9818acf2f42a7fbb /src/compiler/cpp_generator.cc
parent0cd69562fd8c005361e3f32ac0d3f9d43b713827 (diff)
Add impl subdirectory under public and move headers that need to be installed
to it. Change on 2015/01/09 by yangg <yangg@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83640373
Diffstat (limited to 'src/compiler/cpp_generator.cc')
-rw-r--r--src/compiler/cpp_generator.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/compiler/cpp_generator.cc b/src/compiler/cpp_generator.cc
index 14d5005dc0..43a04be931 100644
--- a/src/compiler/cpp_generator.cc
+++ b/src/compiler/cpp_generator.cc
@@ -53,8 +53,7 @@ bool ClientOnlyStreaming(const google::protobuf::MethodDescriptor* method) {
}
bool ServerOnlyStreaming(const google::protobuf::MethodDescriptor* method) {
- return !method->client_streaming() &&
- method->server_streaming();
+ return !method->client_streaming() && method->server_streaming();
}
bool BidiStreaming(const google::protobuf::MethodDescriptor* method) {
@@ -98,7 +97,7 @@ bool HasBidiStreaming(const google::protobuf::FileDescriptor* file) {
string GetHeaderIncludes(const google::protobuf::FileDescriptor* file) {
string temp =
- "#include \"src/cpp/client/internal_stub.h\"\n"
+ "#include \"grpc++/impl/internal_stub.h\"\n"
"#include \"grpc++/status.h\"\n"
"\n"
"namespace grpc {\n"
@@ -126,9 +125,9 @@ string GetHeaderIncludes(const google::protobuf::FileDescriptor* file) {
}
string GetSourceIncludes() {
- return "#include \"src/cpp/rpc_method.h\"\n"
- "#include \"src/cpp/server/rpc_service_method.h\"\n"
- "#include \"grpc++/channel_interface.h\"\n"
+ return "#include \"grpc++/channel_interface.h\"\n"
+ "#include \"grpc++/impl/rpc_method.h\"\n"
+ "#include \"grpc++/impl/rpc_service_method.h\"\n"
"#include \"grpc++/stream.h\"\n";
}