diff options
Diffstat (limited to 'CIAO/ciao/Container_Base.pidl')
-rw-r--r-- | CIAO/ciao/Container_Base.pidl | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/CIAO/ciao/Container_Base.pidl b/CIAO/ciao/Container_Base.pidl new file mode 100644 index 00000000000..e698ea66b45 --- /dev/null +++ b/CIAO/ciao/Container_Base.pidl @@ -0,0 +1,33 @@ +// $Id$ + +/** + * CIAO's internal container interface definitions. + */ + +//#define CIAO_HAS_IMPORT_KEYWORD + +#if !defined (CONTAINER_BASE_PIDL) +#define CONTAINER_BASE_PIDL + +#include "CIAO_Component.pidl" +#include <SecurityLevel2.idl> +#include "CIAO_Transaction.pidl" + +// *************** Basic Container interfaces *************** + +module CIAO +{ + typeprefix Components "wustl.edu"; + + local interface Container + { + // Return the POA + PortableServer::POA the_POA (); + }; + + local interface SessionContainer + { + + }; +}; +#endif /* CONTAINER_BASE_PIDL */ |