summaryrefslogtreecommitdiff
path: root/CIAO/tests/Bug_2130_Regression/interfaces/ENW.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/Bug_2130_Regression/interfaces/ENW.idl')
-rw-r--r--CIAO/tests/Bug_2130_Regression/interfaces/ENW.idl52
1 files changed, 0 insertions, 52 deletions
diff --git a/CIAO/tests/Bug_2130_Regression/interfaces/ENW.idl b/CIAO/tests/Bug_2130_Regression/interfaces/ENW.idl
deleted file mode 100644
index f62febba8a3..00000000000
--- a/CIAO/tests/Bug_2130_Regression/interfaces/ENW.idl
+++ /dev/null
@@ -1,52 +0,0 @@
-//$Id$
-
-#ifndef ENW_IDL
-#define ENW_IDL
-
-#include <Components.idl>
-
-
-module ENW
-{
- exception EUnknownIdent
- {
- };
-
- exception EUnknownSession
- {
- };
-
- eventtype ET_LifeToken
- {
- };
-
- //////////////////////////////////////////////////////////////////////////////
- //
- // ICheckPoint-Interfaces
- //
-
- const long IdNotDefined = -1;
-
- interface TSession
- {
- long getIdent();
- boolean isInUse();
- };
-
- interface ISessionService
- {
- TSession createSession();
- boolean destroySession( in TSession Session );
-
- TSession acquireSession( in long Ident )
- raises( EUnknownIdent );
-
- boolean releaseSession( in long Ident,
- in TSession Session )
- raises( EUnknownSession );
- };
-
-};
-
-
-#endif //ENW_IDL