From: <de...@us...> - 2003-02-21 15:12:41
|
Update of /cvsroot/fudaa/fudaa_devel/dodico/idl/general In directory sc8-pr-cvs1:/tmp/cvs-serv28202/dodico/idl/general Modified Files: association.idl Log Message: essai Index: association.idl =================================================================== RCS file: /cvsroot/fudaa/fudaa_devel/dodico/idl/general/association.idl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** association.idl 21 Feb 2003 15:09:08 -0000 1.8 --- association.idl 21 Feb 2003 15:12:32 -0000 1.9 *************** *** 1,50 **** ! /* ! * @file association.idl ! * @creation 1998-03-23 ! * @modification $Date$ ! * @license GNU General Public License 2 ! * @copyright (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne ! * @mail de...@fu... ! */ ! ! #ifndef _ASSOCIATION_IDL ! #define _ASSOCIATION_IDL ! ! #include "general/objet.idl" ! ! /** ! * Ce module propose des interfaces pour des associations classiques ! * disponibles notament dans Java comme les Hashtables, ... ! * ! * @version $Revision$ $Date$ by $Author$ ! * @author Desnoix Guillaume ! */ ! module association ! { ! ! /** ! * Une interface de base pour toutes les associations. ! */ ! interface IAssociation : iobjet ! { ! attribute vviobjet paires; ! ! rien vide (); ! booleen contient (in iobjet v); ! iobjet valeur (in iobjet c); ! booleen estVide (); ! viobjet clefs (); ! rien place (in iobjet c, in iobjet v); ! rien enleve (in iobjet c); ! entier taille (); ! viobjet valeurs (); ! }; ! ! interface ITableHachage : IAssociation ! { ! }; ! }; ! ! #endif ! ! --- 1,50 ---- ! /* ! * @file association.idl ! * @creation 1998-03-23 ! * @modification $Date$ ! * @license GNU General Public License 2 ! * @copyright (c)1998-2001 CETMEF 2 bd Gambetta F-60231 Compiegne ! * @mail de...@fu... ! */ ! ! #ifndef _ASSOCIATION_IDL ! #define _ASSOCIATION_IDL ! ! #include "general/objet.idl" ! ! /** ! * Ce module propose des interfaces pour des associations classiques ! * disponibles notament dans Java comme les Hashtables, ... ! * ! * @version $Id$ ! * @author Desnoix Guillaume ! */ ! module association ! { ! ! /** ! * Une interface de base pour toutes les associations. ! */ ! interface IAssociation : iobjet ! { ! attribute vviobjet paires; ! ! rien vide (); ! booleen contient (in iobjet v); ! iobjet valeur (in iobjet c); ! booleen estVide (); ! viobjet clefs (); ! rien place (in iobjet c, in iobjet v); ! rien enleve (in iobjet c); ! entier taille (); ! viobjet valeurs (); ! }; ! ! interface ITableHachage : IAssociation ! { ! }; ! }; ! ! #endif ! ! |