summaryrefslogtreecommitdiff
path: root/CIAO/CCF/Test/IDL2/Compiler/result.idl.orig
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/Test/IDL2/Compiler/result.idl.orig')
-rw-r--r--CIAO/CCF/Test/IDL2/Compiler/result.idl.orig88
1 files changed, 0 insertions, 88 deletions
diff --git a/CIAO/CCF/Test/IDL2/Compiler/result.idl.orig b/CIAO/CCF/Test/IDL2/Compiler/result.idl.orig
deleted file mode 100644
index a29258b9e6f..00000000000
--- a/CIAO/CCF/Test/IDL2/Compiler/result.idl.orig
+++ /dev/null
@@ -1,88 +0,0 @@
-module AttributeTest
-{
- interface I
- {
- attribute long a;
- attribute string foo;
- };
-};
-module InterfaceTest
-{
- abstract interface AI;
- local interface LI;
- interface I;
- abstract interface AI
- {
- };
- interface I : ::InterfaceTest::AI
- {
- };
- local interface LI : ::InterfaceTest::I, ::InterfaceTest::AI
- {
- };
-};
-module MemberTest
-{
- typedef long Id;
- struct S
- {
- long id;
- string foo;
- string bar;
- string baz;
- };
-};
-module ModuleTest
-{
- module M
- {
- module N
- {
- typedef long L;
- };
- };
- module M
- {
- typedef long L;
- };
- module N
- {
- typedef long L;
- };
-};
-module OperationTest
-{
- interface I
- {
- long f (in string a, out long b, inout octet c);
- };
-};
-module Sequence
-{
- typedef sequence<octet> OctetSeq;
- typedef sequence<octet> RawSeq;
- typedef sequence<string> StringSeq;
- typedef sequence<string> StrSeq;
-};
-module StructTest
-{
- struct S;
- struct S
- {
- long m;
- };
-};
-module TypeidTest
-{
- interface I;
- typeid ::TypeidTest::I "Foo";
- typeprefix ::TypeidTest "Bar";
-};
-module TypedefTest
-{
- interface I;
- typedef ::TypedefTest::I J;
- interface I
- {
- };
-};