summaryrefslogtreecommitdiff
path: root/TAO/tao/Pollable.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Pollable.pidl')
-rw-r--r--TAO/tao/Pollable.pidl54
1 files changed, 0 insertions, 54 deletions
diff --git a/TAO/tao/Pollable.pidl b/TAO/tao/Pollable.pidl
deleted file mode 100644
index 347aa4c9dfc..00000000000
--- a/TAO/tao/Pollable.pidl
+++ /dev/null
@@ -1,54 +0,0 @@
-//
-// $Id$
-//
-// ================================================================
-//
-// = LIBRARY
-// TAO
-//
-// = FILENAME
-// Policy.pidl
-//
-// = DESCRIPTION
-// This file was used to generate the code in Pollable{C,S,S_T}.{h,i,cpp}
-// The code is then hand-crafted to compile it inside the ORB, avoid
-// cyclic dependencies and enforce the locality constraints on
-// certain objects.
-//
-// ================================================================
-
-#pragma prefix "omg.org"
-
-module CORBA
-{
- interface PollableSet;
-
- interface Pollable {
- boolean is_ready(in unsigned long timeout);
-
- PollableSet create_pollable_set( );
- };
-
- interface DIIPollable : Pollable { };
-
- interface PollableSet {
-
- exception NoPossiblePollable { };
- exception UnknownPollable { };
-
- DIIPollable create_dii_pollable();
-
- void add_pollable(in Pollable potential );
-
- Pollable poll(in unsigned long timeout)
- raises( NoPossiblePollable );
-
- void remove(in Pollable potential )
- raises( UnknownPollable );
-
- unsigned short number_left( );
- };
-
-};
-
-#pragma prefix ""