[Plib-cvs] plib/src/pui pu.h,1.130,1.131
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-09-18 14:38:31
|
Update of /cvsroot/plib/plib/src/pui In directory usw-pr-cvs1:/tmp/cvs-serv30675 Modified Files: pu.h Log Message: puRange changes for const-correctness Index: pu.h =================================================================== RCS file: /cvsroot/plib/plib/src/pui/pu.h,v retrieving revision 1.130 retrieving revision 1.131 diff -u -d -r1.130 -r1.131 --- pu.h 17 Sep 2002 22:42:12 -0000 1.130 +++ pu.h 18 Sep 2002 14:38:26 -0000 1.131 @@ -1116,10 +1116,10 @@ float getMinValue ( void ) const { return minimum_value ; } virtual void setMinValue ( float f ) { minimum_value = f ; } - float getStepSize ( void ) { return step_size ; } + float getStepSize ( void ) const { return step_size ; } void setStepSize ( float f ) { step_size = f ; } - float checkStep ( float val_to_check ) + float checkStep ( float val_to_check ) const { float step = val_to_check ; |