home *** CD-ROM | disk | FTP | other *** search
-
- class CCaractere
- {
- public :
-
- enum Type { Lettre,
- Chiffre,
- SigneMathematique,
- Ponctuation,
- Mot,
- FinDeLigne,
- Nom,
- Date,
- Englobant };
-
- CCaractere();
- CCaractere( char tcar );
- ~CCaractere();
- operator=( char tcar );
- operator=( CCaractere tccar );
- operator==( char tcar );
- operator==( CCaractere tccar );
- operator!=( char tcar );
- operator!=( CCaractere tccar );
- bool EstLettre();
- bool EstChiffre();
- bool EstSigneMathematique();
- bool EstPonctuation();
- bool EstMot();
- bool EstFinDeLigne();
- bool EstDate();
- bool EstNom();
- bool EstEnglobant();
- bool EstDuType ( Type t );
- char Valeur();
- CString TexteDuType( Type t );
-
- private :
- char car;
- };
-