From 3b06aa3721caf645b080e4d9661ff5d8501f1ef5 Mon Sep 17 00:00:00 2001 From: dhood Date: Thu, 30 Nov 2017 13:27:44 -0800 Subject: [PATCH] Escalate more namespaces e.g. rclcpp::Service (#410) --- rclcpp/include/rclcpp/rclcpp.hpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/rclcpp/include/rclcpp/rclcpp.hpp b/rclcpp/include/rclcpp/rclcpp.hpp index 4374b2f..54881b2 100644 --- a/rclcpp/include/rclcpp/rclcpp.hpp +++ b/rclcpp/include/rclcpp/rclcpp.hpp @@ -150,8 +150,16 @@ namespace rclcpp // For example, this next line escalates type "rclcpp:node::Node" to "rclcpp::Node" using rclcpp::node::Node; using rclcpp::publisher::Publisher; -using rclcpp::subscription::SubscriptionBase; +using rclcpp::publisher::PublisherBase; using rclcpp::subscription::Subscription; +using rclcpp::subscription::SubscriptionBase; +using rclcpp::client::Client; +using rclcpp::client::ClientBase; +using rclcpp::service::Service; +using rclcpp::service::ServiceBase; +using rclcpp::parameter_client::AsyncParametersClient; +using rclcpp::parameter_client::SyncParametersClient; +using rclcpp::parameter_service::ParameterService; using rclcpp::rate::GenericRate; using rclcpp::rate::WallRate; using rclcpp::timer::GenericTimer;