File tree 2 files changed +3
-3
lines changed
include/rosbag2_transport
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class Recorder : public rclcpp::Node
96
96
topics_using_fallback_qos () const ;
97
97
98
98
ROSBAG2_TRANSPORT_PUBLIC
99
- const std::unordered_map<std::string, std::shared_ptr<rclcpp::GenericSubscription >> &
99
+ const std::unordered_map<std::string, std::shared_ptr<rclcpp::SubscriptionBase >> &
100
100
subscriptions () const ;
101
101
102
102
ROSBAG2_TRANSPORT_PUBLIC
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class RecorderImpl
83
83
rosbag2_storage::StorageOptions storage_options_;
84
84
rosbag2_transport::RecordOptions record_options_;
85
85
std::atomic<bool > stop_discovery_;
86
- std::unordered_map<std::string, std::shared_ptr<rclcpp::GenericSubscription >> subscriptions_;
86
+ std::unordered_map<std::string, std::shared_ptr<rclcpp::SubscriptionBase >> subscriptions_;
87
87
88
88
private:
89
89
void topics_discovery ();
@@ -643,7 +643,7 @@ Recorder::topics_using_fallback_qos() const
643
643
return pimpl_->topics_warned_about_incompatibility_ ;
644
644
}
645
645
646
- const std::unordered_map<std::string, std::shared_ptr<rclcpp::GenericSubscription >> &
646
+ const std::unordered_map<std::string, std::shared_ptr<rclcpp::SubscriptionBase >> &
647
647
Recorder::subscriptions () const
648
648
{
649
649
return pimpl_->subscriptions_ ;
You can’t perform that action at this time.
0 commit comments