00001
00031
#ifndef _GUARD_CORBA_H
00032
#define _GUARD_CORBA_H
00033
00034
#include "config.h"
00035
#include <string>
00036
#include <map>
00037
00038
#ifdef HAVE_ORBIX
00039
#include "omg/orb.hh"
00040
#include "omg/PortableServerS.hh"
00041
#include "omg/CosNaming.hh"
00042
#endif
00043
00044
#ifdef HAVE_ORBACUS
00045
#include <OB/CORBA.h>
00046
#include <OB/CosNaming.h>
00047
#endif
00048
00049
#ifdef HAVE_MICO
00050
#include "CORBA.h"
00051
#include "coss/CosNaming.h"
00052
#endif
00053
00054
#ifdef HAVE_TAO
00055
#include "tao/corba.h"
00056
#include "tao/PortableServer/PortableServer.h"
00057
#include "orbsvcs/CosNamingC.h"
00058
#endif
00059
00061 typedef std::map<std::string, std::string, std::less<std::string> >
ConfMap;
00062
00063
#endif
00064