aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/impl/codegen/channel_interface.h
diff options
context:
space:
mode:
authorGravatar hcaseyal <hcaseyal@gmail.com>2018-12-03 10:16:35 -0800
committerGravatar GitHub <noreply@github.com>2018-12-03 10:16:35 -0800
commitcf14bd13fbbd2d0069db35de51b940d9f0a458f2 (patch)
treea6bcfc779b60b4ea436f04875bdc7658046b0080 /include/grpcpp/impl/codegen/channel_interface.h
parentc12aabc6a7d67e9f786125480ed6b17e25278c98 (diff)
parent1e1d4c262134c2641329a42f262c1687d8113f0e (diff)
Merge branch 'master' into callback_test_coverage_1
Diffstat (limited to 'include/grpcpp/impl/codegen/channel_interface.h')
-rw-r--r--include/grpcpp/impl/codegen/channel_interface.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/grpcpp/impl/codegen/channel_interface.h b/include/grpcpp/impl/codegen/channel_interface.h
index 6ec1ffb8c7..728a7b9049 100644
--- a/include/grpcpp/impl/codegen/channel_interface.h
+++ b/include/grpcpp/impl/codegen/channel_interface.h
@@ -53,6 +53,12 @@ template <class W, class R>
class ClientAsyncReaderWriterFactory;
template <class R>
class ClientAsyncResponseReaderFactory;
+template <class W, class R>
+class ClientCallbackReaderWriterFactory;
+template <class R>
+class ClientCallbackReaderFactory;
+template <class W>
+class ClientCallbackWriterFactory;
class InterceptedChannel;
} // namespace internal
@@ -106,6 +112,12 @@ class ChannelInterface {
friend class ::grpc::internal::ClientAsyncReaderWriterFactory;
template <class R>
friend class ::grpc::internal::ClientAsyncResponseReaderFactory;
+ template <class W, class R>
+ friend class ::grpc::internal::ClientCallbackReaderWriterFactory;
+ template <class R>
+ friend class ::grpc::internal::ClientCallbackReaderFactory;
+ template <class W>
+ friend class ::grpc::internal::ClientCallbackWriterFactory;
template <class InputMessage, class OutputMessage>
friend class ::grpc::internal::BlockingUnaryCallImpl;
template <class InputMessage, class OutputMessage>