We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30c1d5c commit 251a8a1Copy full SHA for 251a8a1
example_external/include/generate_parameter_library_example_external/minimal_publisher_external.hpp
@@ -28,6 +28,7 @@
28
29
#pragma once
30
31
+#include <memory>
32
#include <rclcpp/rclcpp.hpp>
33
#include <rclcpp_components/register_node_macro.hpp>
34
@@ -37,7 +38,7 @@ namespace admittance_controller {
37
38
39
class MinimalPublisher : public rclcpp::Node {
40
public:
- MinimalPublisher(const rclcpp::NodeOptions& options = rclcpp::NodeOptions());
41
+ explicit MinimalPublisher(const rclcpp::NodeOptions& options = rclcpp::NodeOptions());
42
43
private:
44
void timer_callback();
0 commit comments