Main Page   Namespace List   Alphabetical List   Compound List   File List   Compound Members   File Members  

percent.h

Go to the documentation of this file.
00001 
00002 /* Copyright(C) (2002) (ID - IMAG) <Florent.Morata@imag.fr> 
00003 
00004 /*
00005  *  This program is free software; you can redistribute it and/or modify
00006  *  it under the terms of the GNU General Public License as published by
00007  *  the Free Software Foundation; either version 2 of the License, or
00008  *  (at your option) any later version.
00009  *
00010  *  This program is distributed in the hope that it will be useful,
00011  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  *  GNU Library General Public License for more details.
00014  *
00015  *  You should have received a copy of the GNU General Public License
00016  *  along with this program; if not, write to the Free Software
00017  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00018  */
00019  
00020  
00029 #ifndef _PERCENT_H_
00030 #define _PERCENT_H_
00031 
00032 #include <iostream>
00033 
00034 
00036 typedef int percent;
00037 
00038 
00042 class Percent
00043 {
00044  private:
00046   percent old;
00048   percent nw;
00049 
00050  public:
00051 
00052   Percent();
00053   ~Percent();
00054   void create(const int total,const int step);
00055   bool is_new();
00056   void progress();
00057   void update();
00058   percent give_new();
00059   percent give_old();
00060 
00061 };
00062 
00063 #include "percent.inl"
00064 
00065 #endif
00066 
00067 

Generated on Tue Dec 10 12:44:21 2002 for PSI by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002