// majauge.h

#ifndef _majauge_h
#define _majauge_h


class	TJaugeSep
{
protected :
   int		valeurCourante;
   char *	nom;

public:
   TJaugeSep(int ValeurMax,int ValeurInit,char *n);
   void Affiche( int val );
   void Plus();
   void Moins();
};

#endif

