aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-04-24 23:24:44 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-04-24 23:24:44 +0200
commitfd2bf675f750f440d92bffeb88771e6d9253b498 (patch)
tree340f8a6b8a5b181c215a90e038b17475a3206855 /src/cpp
parent76e49fd80557c33595508686f3450982e63f0fce (diff)
parent4107ba289747be6fba879e6060d40969f1aee89c (diff)
Merge branch 'master' of github.com:grpc/grpc into the-purge-2
Conflicts: include/grpc++/completion_queue.h
Diffstat (limited to 'src/cpp')
-rw-r--r--src/cpp/client/channel.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cpp/client/channel.h b/src/cpp/client/channel.h
index aaf4dbe10d..cd239247c8 100644
--- a/src/cpp/client/channel.h
+++ b/src/cpp/client/channel.h
@@ -38,6 +38,7 @@
#include <grpc++/channel_interface.h>
#include <grpc++/config.h>
+#include <grpc++/impl/grpc_library.h>
struct grpc_channel;
@@ -49,7 +50,8 @@ class CompletionQueue;
class Credentials;
class StreamContextInterface;
-class Channel GRPC_FINAL : public ChannelInterface {
+class Channel GRPC_FINAL : public GrpcLibrary,
+ public ChannelInterface {
public:
Channel(const grpc::string& target, grpc_channel* c_channel);
~Channel() GRPC_OVERRIDE;