summaryrefslogtreecommitdiff
path: root/CIAO/ciao/extension/CCM_QoS.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/extension/CCM_QoS.idl')
-rw-r--r--CIAO/ciao/extension/CCM_QoS.idl31
1 files changed, 0 insertions, 31 deletions
diff --git a/CIAO/ciao/extension/CCM_QoS.idl b/CIAO/ciao/extension/CCM_QoS.idl
deleted file mode 100644
index f78f98d3665..00000000000
--- a/CIAO/ciao/extension/CCM_QoS.idl
+++ /dev/null
@@ -1,31 +0,0 @@
-// $Id$
-
-#if !defined (CCM_QOS_IDL)
-#define CCM_QOS_IDL
-
-#include "ciao/CCM_Cookie.idl"
-#include "ciao/CCM_CCMException.idl"
-
-module Components
-{
- module QoS {
- struct QoSInstance {
- string dimension;
- any value;
- };
- typedef sequence<QoSInstance> QoSInstances;
- struct QoSConstraint {
- string characteristic;
- QoSInstances instances;
- };
- typedef sequence<QoSConstraint> QoSConstraints;
- interface Negotiation
- {
- Components::Cookie require_qos(in QoSConstraint requirements, in string client_id)
- raises (CCMException);
- void release_qos (in Components::Cookie ck);
- };
- };
-};
-
-#endif /* CCM_QOS_IDL */