[Mockpp-commits] mockpp/mockpp/builder ArgumentsMatchBuilderN.h,1.3,1.4 gen_argumentsmatchbuilder_N.
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-10-29 19:09:40
|
Update of /cvsroot/mockpp/mockpp/mockpp/builder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23065/mockpp/builder Modified Files: ArgumentsMatchBuilderN.h gen_argumentsmatchbuilder_N.pl Log Message: typos in docs Index: gen_argumentsmatchbuilder_N.pl =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/builder/gen_argumentsmatchbuilder_N.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- gen_argumentsmatchbuilder_N.pl 28 Oct 2005 19:04:04 -0000 1.1 +++ gen_argumentsmatchbuilder_N.pl 29 Oct 2005 19:09:27 -0000 1.2 @@ -197,7 +197,7 @@ * \@ingroup grp_chainer"; for($p = 1; $p <= $numArgs; ++$p) { print OUT " - * \@param cons" .$p . " pointer to the constraint for method parameter " .$p; } + * \@param p" .$p . " pointer to the constraint for method parameter " .$p; } print OUT " * \@return the builder object Index: ArgumentsMatchBuilderN.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/builder/ArgumentsMatchBuilderN.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ArgumentsMatchBuilderN.h 29 Oct 2005 18:17:30 -0000 1.3 +++ ArgumentsMatchBuilderN.h 29 Oct 2005 19:09:27 -0000 1.4 @@ -61,7 +61,7 @@ /** Indicate a matcher for 1 arguments. * @ingroup grp_chainer - * @param cons1 pointer to the constraint for method parameter 1 + * @param p1 pointer to the constraint for method parameter 1 * @return the builder object */ MatchBuilder<R, I>& with( const ConstraintHolder<P1> &p1 ) @@ -104,8 +104,8 @@ /** Indicate a matcher for 2 arguments. * @ingroup grp_chainer - * @param cons1 pointer to the constraint for method parameter 1 - * @param cons2 pointer to the constraint for method parameter 2 + * @param p1 pointer to the constraint for method parameter 1 + * @param p2 pointer to the constraint for method parameter 2 * @return the builder object */ MatchBuilder<R, I>& with( const ConstraintHolder<P1> &p1 @@ -150,9 +150,9 @@ /** Indicate a matcher for 3 arguments. * @ingroup grp_chainer - * @param cons1 pointer to the constraint for method parameter 1 - * @param cons2 pointer to the constraint for method parameter 2 - * @param cons3 pointer to the constraint for method parameter 3 + * @param p1 pointer to the constraint for method parameter 1 + * @param p2 pointer to the constraint for method parameter 2 + * @param p3 pointer to the constraint for method parameter 3 * @return the builder object */ MatchBuilder<R, I>& with( const ConstraintHolder<P1> &p1 @@ -199,10 +199,10 @@ /** Indicate a matcher for 4 arguments. * @ingroup grp_chainer - * @param cons1 pointer to the constraint for method parameter 1 - * @param cons2 pointer to the constraint for method parameter 2 - * @param cons3 pointer to the constraint for method parameter 3 - * @param cons4 pointer to the constraint for method parameter 4 + * @param p1 pointer to the constraint for method parameter 1 + * @param p2 pointer to the constraint for method parameter 2 + * @param p3 pointer to the constraint for method parameter 3 + * @param p4 pointer to the constraint for method parameter 4 * @return the builder object */ MatchBuilder<R, I>& with( const ConstraintHolder<P1> &p1 @@ -251,11 +251,11 @@ /** Indicate a matcher for 5 arguments. * @ingroup grp_chainer - * @param cons1 pointer to the constraint for method parameter 1 - * @param cons2 pointer to the constraint for method parameter 2 - * @param cons3 pointer to the constraint for method parameter 3 - * @param cons4 pointer to the constraint for method parameter 4 - * @param cons5 pointer to the constraint for method parameter 5 + * @param p1 pointer to the constraint for method parameter 1 + * @param p2 pointer to the constraint for method parameter 2 + * @param p3 pointer to the constraint for method parameter 3 + * @param p4 pointer to the constraint for method parameter 4 + * @param p5 pointer to the constraint for method parameter 5 * @return the builder object */ MatchBuilder<R, I>& with( const ConstraintHolder<P1> &p1 @@ -306,12 +306,12 @@ /** Indicate a matcher for 6 arguments. * @ingroup grp_chainer - * @param cons1 pointer to the constraint for method parameter 1 - * @param cons2 pointer to the constraint for method parameter 2 - * @param cons3 pointer to the constraint for method parameter 3 - * @param cons4 pointer to the constraint for method parameter 4 - * @param cons5 pointer to the constraint for method parameter 5 - * @param cons6 pointer to the constraint for method parameter 6 + * @param p1 pointer to the constraint for method parameter 1 + * @param p2 pointer to the constraint for method parameter 2 + * @param p3 pointer to the constraint for method parameter 3 + * @param p4 pointer to the constraint for method parameter 4 + * @param p5 pointer to the constraint for method parameter 5 + * @param p6 pointer to the constraint for method parameter 6 * @return the builder object */ MatchBuilder<R, I>& with( const ConstraintHolder<P1> &p1 |