summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl')
-rw-r--r--CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl51
1 files changed, 0 insertions, 51 deletions
diff --git a/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl b/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl
deleted file mode 100644
index 15c32fe82b3..00000000000
--- a/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl
+++ /dev/null
@@ -1,51 +0,0 @@
-// $Id$
-/**
- * @file Attributes.idl
- * @author Will Otte <wotte@dre.vanderbilt.edu>
- */
-
-#include <Components.idl>
-
-module Attributes
-{
- component Foo
- {
- attribute float test;
- attribute long testA, testB;
- };
-
- component Bar
- {
- readonly attribute float test1;
- readonly attribute long testB, testC;
- };
-
- exception FooException
- {
- };
-
- exception BarException
- {
- };
-
- component FooRaises
- {
- attribute float test2 getraises (FooException);
- };
-
- component BarRaises
- {
- attribute float test3 setraises (BarException);
- };
-
- component FooBarRaises
- {
- attribute float test4
- getraises (FooException) setraises (BarException);
- };
-
- component ROFooRaises
- {
- readonly attribute float test5 raises (FooException);
- };
-};