Skip to content

Commit

Permalink
Merge pull request #45 from ArthurVal/fix/lf_controller_public_attrib…
Browse files Browse the repository at this point in the history
…utes

Fix missing private keyword in lf_controller
  • Loading branch information
MaximilienNaveau authored Dec 11, 2024
2 parents 7eb9fa4 + e6683f3 commit 7f5ef39
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/linear_feedback_controller/lf_controller.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ class LFController {
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW;

static constexpr int kNbFreeFlyerDof = 6;

LFController();
virtual ~LFController();

Expand All @@ -20,6 +22,7 @@ class LFController {
const linear_feedback_controller_msgs::Eigen::Sensor& sensor_msg,
const linear_feedback_controller_msgs::Eigen::Control& control_msg);

private:
Eigen::VectorXd desired_configuration_;
Eigen::VectorXd desired_velocity_;
Eigen::VectorXd measured_configuration_;
Expand All @@ -34,8 +37,6 @@ class LFController {

Eigen::VectorXd control_;
RobotModelBuilder::SharedPtr rmb_;

static constexpr int kNbFreeFlyerDof = 6;
};

} // namespace linear_feedback_controller
Expand Down

0 comments on commit 7f5ef39

Please sign in to comment.