Skip to content
Snippets Groups Projects
Commit f8f05a59 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Make Edge::configConstraint and pathConstraint private.

parent 88214aec
No related branches found
No related tags found
No related merge requests found
......@@ -60,19 +60,11 @@ namespace hpp {
{
public:
/// Destructor
~Edge ()
~Edge ();
/// Create a new empty Edge.
static EdgePtr_t create (const NodeWkPtr_t& from, const NodeWkPtr_t& to);
/// Constraint to project onto the same leaf as config.
/// \return The initialized projector.
ConstraintSetPtr_t configConstraint() const;
/// Constraint to project a path.
/// \return The initialized constraint.
ConstraintSetPtr_t pathConstraint() const;
/// Print the object in a stream.
std::ostream& print (std::ostream& os) const;
......@@ -126,6 +118,14 @@ namespace hpp {
/// same leaf of to_ as the configuration used for initialization.
Constraint_t* configConstraints_;
/// Constraint to project onto the same leaf as config.
/// \return The initialized projector.
ConstraintSetPtr_t configConstraint() const;
/// Constraint to project a path.
/// \return The initialized constraint.
ConstraintSetPtr_t pathConstraint() const;
/// Weak pointer to itself.
EdgeWkPtr_t wkPtr_;
}; // class Edge
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment