Skip to content

Commit d61a357

Browse files
committed
Format
1 parent f80d845 commit d61a357

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

aegis_grpc/include/aegis_grpc/robot_control_service.hpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ class RobotControlServiceImpl final
2626
using GripperCommand = control_msgs::action::GripperCommand;
2727
using GoalHandleGripper = rclcpp_action::ClientGoalHandle<GripperCommand>;
2828

29+
enum class ServoMode {
30+
None,
31+
JointJog,
32+
TCPTwist
33+
};
34+
2935
explicit RobotControlServiceImpl(std::shared_ptr<rclcpp::Node> node);
3036

3137
// TODO(issue#87) Create additional methods to enable and disable servo control.
@@ -96,11 +102,6 @@ class RobotControlServiceImpl final
96102
rclcpp_action::Client<GripperCommand>::SharedPtr gripper_client_;
97103
rclcpp::TimerBase::SharedPtr servo_pub_timer_;
98104

99-
enum class ServoMode {
100-
None,
101-
JointJog,
102-
TCPTwist
103-
};
104105
std::mutex servo_mutex_;
105106
ServoMode servo_mode_;
106107
std::string servo_tcp_link_;

0 commit comments

Comments
 (0)