rclcpp  master
C++ ROS Client Library API
node_topics_interface.hpp
Go to the documentation of this file.
1 // Copyright 2016 Open Source Robotics Foundation, Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef RCLCPP__NODE_INTERFACES__NODE_TOPICS_INTERFACE_HPP_
16 #define RCLCPP__NODE_INTERFACES__NODE_TOPICS_INTERFACE_HPP_
17 
18 #include <functional>
19 #include <memory>
20 #include <string>
21 
22 #include "rcl/publisher.h"
23 #include "rcl/subscription.h"
24 
25 #include "rclcpp/macros.hpp"
26 #include "rclcpp/publisher.hpp"
28 #include "rclcpp/subscription.hpp"
31 
32 namespace rclcpp
33 {
34 namespace node_interfaces
35 {
36 
39 {
40 public:
42 
44  virtual
45  rclcpp::publisher::PublisherBase::SharedPtr
47  const std::string & topic_name,
48  const rclcpp::PublisherFactory & publisher_factory,
49  rcl_publisher_options_t & publisher_options,
50  bool use_intra_process) = 0;
51 
53  virtual
54  void
56  rclcpp::publisher::PublisherBase::SharedPtr publisher) = 0;
57 
59  virtual
60  rclcpp::subscription::SubscriptionBase::SharedPtr
62  const std::string & topic_name,
63  const rclcpp::SubscriptionFactory & subscription_factory,
64  rcl_subscription_options_t & subscription_options,
65  bool use_intra_process) = 0;
66 
68  virtual
69  void
71  rclcpp::subscription::SubscriptionBase::SharedPtr subscription,
72  rclcpp::callback_group::CallbackGroup::SharedPtr callback_group) = 0;
73 };
74 
75 } // namespace node_interfaces
76 } // namespace rclcpp
77 
78 #endif // RCLCPP__NODE_INTERFACES__NODE_TOPICS_INTERFACE_HPP_
#define RCLCPP_SMART_PTR_ALIASES_ONLY(...)
Definition: macros.hpp:66
Definition: allocator_common.hpp:24
virtual rclcpp::subscription::SubscriptionBase::SharedPtr create_subscription(const std::string &topic_name, const rclcpp::SubscriptionFactory &subscription_factory, rcl_subscription_options_t &subscription_options, bool use_intra_process)=0
Factory with functions used to create a MessageT specific PublisherT.
Definition: publisher_factory.hpp:45
virtual rclcpp::publisher::PublisherBase::SharedPtr create_publisher(const std::string &topic_name, const rclcpp::PublisherFactory &publisher_factory, rcl_publisher_options_t &publisher_options, bool use_intra_process)=0
virtual void add_publisher(rclcpp::publisher::PublisherBase::SharedPtr publisher)=0
virtual void add_subscription(rclcpp::subscription::SubscriptionBase::SharedPtr subscription, rclcpp::callback_group::CallbackGroup::SharedPtr callback_group)=0
Factory with functions used to create a Subscription<MessageT>.
Definition: subscription_factory.hpp:46
#define RCLCPP_PUBLIC
Definition: visibility_control.hpp:50
Pure virtual interface class for the NodeTopics part of the Node API.
Definition: node_topics_interface.hpp:38