Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _PI_CURRENT_IDL_
00021 #define _PI_CURRENT_IDL_
00022
00023 #include "tao/PI/InvalidSlot.pidl"
00024 #include "tao/PI_Forward.pidl"
00025 #include "tao/Current.pidl"
00026
00027 module PortableInterceptor {
00028
00029 typeprefix PortableInterceptor "omg.org";
00030
00031 local interface Current : CORBA::Current
00032 {
00033 any get_slot (in SlotId id) raises (InvalidSlot);
00034 void set_slot (in SlotId id, in any data) raises (InvalidSlot);
00035 };
00036 };
00037
00038 #endif