[Mockpp-commits] mockpp/mockpp/chaining Invocation.h,1.14,1.15
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-07-24 16:11:27
|
Update of /cvsroot/mockpp/mockpp/mockpp/chaining In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19310/mockpp/chaining Modified Files: Invocation.h Log Message: OutBound for chainable objects Index: Invocation.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/chaining/Invocation.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- Invocation.h 24 Jul 2005 12:54:00 -0000 1.14 +++ Invocation.h 24 Jul 2005 16:11:14 -0000 1.15 @@ -182,7 +182,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T1 getParameter1() const + const T1 & getParameter1() const { return param1; } @@ -257,7 +257,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T1 getParameter1() const + const T1 & getParameter1() const { return param1; } @@ -265,7 +265,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T2 getParameter2() const + const T2 & getParameter2() const { return param2; } @@ -346,7 +346,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T1 getParameter1() const + const T1 & getParameter1() const { return param1; } @@ -354,7 +354,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T2 getParameter2() const + const T2 & getParameter2() const { return param2; } @@ -362,7 +362,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T3 getParameter3() const + const T3 & getParameter3() const { return param3; } @@ -449,7 +449,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T1 getParameter1() const + const T1 & getParameter1() const { return param1; } @@ -457,7 +457,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T2 getParameter2() const + const T2 & getParameter2() const { return param2; } @@ -465,7 +465,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T3 getParameter3() const + const T3 & getParameter3() const { return param3; } @@ -473,7 +473,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T4 getParameter4() const + const T4 & getParameter4() const { return param4; } @@ -566,7 +566,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T1 getParameter1() const + const T1 & getParameter1() const { return param1; } @@ -574,7 +574,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T2 getParameter2() const + const T2 & getParameter2() const { return param2; } @@ -582,7 +582,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T3 getParameter3() const + const T3 & getParameter3() const { return param3; } @@ -590,7 +590,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T4 getParameter4() const + const T4 & getParameter4() const { return param4; } @@ -598,7 +598,7 @@ /** Returns an invocation parameter * @return the invocation parameter */ - T5 getParameter5() const + const T5 & getParameter5() const { return param5; } |