diff options
Diffstat (limited to 'include/grpc++/create_channel.h')
-rw-r--r-- | include/grpc++/create_channel.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/grpc++/create_channel.h b/include/grpc++/create_channel.h index 424a93a64c..0e559ac53e 100644 --- a/include/grpc++/create_channel.h +++ b/include/grpc++/create_channel.h @@ -36,15 +36,14 @@ #include <memory> -#include <grpc++/config.h> #include <grpc++/credentials.h> +#include <grpc++/support/channel_arguments.h> +#include <grpc++/support/config.h> namespace grpc { -class ChannelArguments; -class ChannelInterface; // If creds does not hold an object or is invalid, a lame channel is returned. -std::shared_ptr<ChannelInterface> CreateChannel( +std::shared_ptr<Channel> CreateChannel( const grpc::string& target, const std::shared_ptr<Credentials>& creds, const ChannelArguments& args); |