Merge pull request #19951 from yang-g/accessor

Add accessor declaration for ClientContext
pull/19957/head
Yang Gao 6 years ago committed by GitHub
commit 6f86f5e333
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      include/grpcpp/impl/codegen/client_context_impl.h

@ -85,6 +85,7 @@ class ClientCallbackReaderImpl;
template <class Request>
class ClientCallbackWriterImpl;
class ClientCallbackUnaryImpl;
class ClientContextAccessor;
} // namespace internal
class CallCredentials;
@ -424,6 +425,7 @@ class ClientContext {
template <class Request>
friend class ::grpc_impl::internal::ClientCallbackWriterImpl;
friend class ::grpc_impl::internal::ClientCallbackUnaryImpl;
friend class ::grpc_impl::internal::ClientContextAccessor;
// Used by friend class CallOpClientRecvStatus
void set_debug_error_string(const grpc::string& debug_error_string) {

Loading…
Cancel
Save