Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Oct 24, 2016
1 parent 5ebb079 commit cb99643
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/Mod/Sketcher/App/PropertyConstraintList.h
Expand Up @@ -67,10 +67,23 @@ class SketcherExport PropertyConstraintList : public App::PropertyLists
return "SketcherGui::PropertyConstraintListItem";
}

/** Sets the property
*/
/*!
Sets a single constraint to the property at a certain
position. The value is cloned inernally so it's in the
responsibility of the caller to free the memory.
*/
void set1Value(const int idx, const Constraint*);
/*!
Sets a single constraint to the property.
The value is cloned inernally so it's in the
responsibility of the caller to free the memory.
*/
void setValue(const Constraint*);
/*!
Sets a vector of constraint to the property.
The values of the array are cloned inernally so it's
in the responsibility of the caller to free the memory.
*/
void setValues(const std::vector<Constraint*>&);

/// index operator
Expand Down

0 comments on commit cb99643

Please sign in to comment.