CORBA::ContainedSeq_ptr CORBA::Repository::lookup_name(CORBA::Char *NomDuService, CORBA::Long Niveau, CORBA::DefinitionKind SorteDemandee, CORBA::Boolean ExclureLesHeritages);
Le niveau de recherche est donné par Niveau. La sorte du service est donnée par Niveau.
Si ExclureHeritage vaut Vrai, les descriptions ne comportent pas les héritages non surchargés.
#include <corba.h>
#include <oad_c.hh>
#include <impldef_c.hh>
CORBA::Repository_ptr pRepository;
CORBA::Repository_ptr pContainedSeq_ptr;
...
pRepository=CORBA::Repository::_bind();
...
pContainedSeq_ptr=pRepository->lookup_name("MesServices", -1, CORBA::dk_all, 1);
...