[Plib-cvs] plib/src/pui pu.h,1.150,1.151
Brought to you by:
sjbaker
From: Bram S. <br...@us...> - 2005-08-28 06:25:23
|
Update of /cvsroot/plib/plib/src/pui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14986 Modified Files: pu.h Log Message: Classes with virt funcs need virt destructor Index: pu.h =================================================================== RCS file: /cvsroot/plib/plib/src/pui/pu.h,v retrieving revision 1.150 retrieving revision 1.151 diff -u -d -r1.150 -r1.151 --- pu.h 6 May 2005 18:46:28 -0000 1.150 +++ pu.h 28 Aug 2005 06:25:15 -0000 1.151 @@ -1131,6 +1131,10 @@ puRange_init ( minval, maxval, step ) ; } + virtual ~puRange() + { + } + float getMaxValue ( void ) const { return maximum_value ; } virtual void setMaxValue ( float f ) { maximum_value = f ; } |