@@ -1004,7 +1004,8 @@ class LifecycleNode : public node_interfaces::LifecycleNodeInterface,
10041004 */
10051005 RCLCPP_LIFECYCLE_PUBLIC
10061006 bool
1007- register_on_configure (std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
1007+ register_on_configure (
1008+ std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
10081009
10091010 // / Register the cleanup callback
10101011 /* *
@@ -1014,7 +1015,8 @@ class LifecycleNode : public node_interfaces::LifecycleNodeInterface,
10141015 */
10151016 RCLCPP_LIFECYCLE_PUBLIC
10161017 bool
1017- register_on_cleanup (std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
1018+ register_on_cleanup (
1019+ std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
10181020
10191021 // / Register the shutdown callback
10201022 /* *
@@ -1024,7 +1026,8 @@ class LifecycleNode : public node_interfaces::LifecycleNodeInterface,
10241026 */
10251027 RCLCPP_LIFECYCLE_PUBLIC
10261028 bool
1027- register_on_shutdown (std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
1029+ register_on_shutdown (
1030+ std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
10281031
10291032 // / Register the activate callback
10301033 /* *
@@ -1034,7 +1037,8 @@ class LifecycleNode : public node_interfaces::LifecycleNodeInterface,
10341037 */
10351038 RCLCPP_LIFECYCLE_PUBLIC
10361039 bool
1037- register_on_activate (std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
1040+ register_on_activate (
1041+ std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
10381042
10391043 // / Register the deactivate callback
10401044 /* *
@@ -1044,7 +1048,8 @@ class LifecycleNode : public node_interfaces::LifecycleNodeInterface,
10441048 */
10451049 RCLCPP_LIFECYCLE_PUBLIC
10461050 bool
1047- register_on_deactivate (std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
1051+ register_on_deactivate (
1052+ std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
10481053
10491054 // / Register the error callback
10501055 /* *
@@ -1054,7 +1059,8 @@ class LifecycleNode : public node_interfaces::LifecycleNodeInterface,
10541059 */
10551060 RCLCPP_LIFECYCLE_PUBLIC
10561061 bool
1057- register_on_error (std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
1062+ register_on_error (
1063+ std::function<LifecycleNodeInterface::CallbackReturn(const State &)> fcn);
10581064
10591065 RCLCPP_LIFECYCLE_PUBLIC
10601066 CallbackReturn
0 commit comments