diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-02-26 00:25:49 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-02-26 00:25:49 +0000 |
commit | 57b8cef9167a424e6cc9f42427667e564e7ed185 (patch) | |
tree | f03ff42809b452cffa0d93a933d180ecb8c04fa2 /TAO/tests | |
parent | 83906281521d181a7e08a2a6a86a9f020874cdaf (diff) | |
download | ATCD-57b8cef9167a424e6cc9f42427667e564e7ed185.tar.gz |
Fixes to accomondate platforms without namespaces.
Diffstat (limited to 'TAO/tests')
-rw-r--r-- | TAO/tests/IDL_Test/including.idl | 7 | ||||
-rw-r--r-- | TAO/tests/IDL_Test/reopened_modules.idl | 13 |
2 files changed, 1 insertions, 19 deletions
diff --git a/TAO/tests/IDL_Test/including.idl b/TAO/tests/IDL_Test/including.idl index 7e7cb1d74e1..2bd9c9d7af5 100644 --- a/TAO/tests/IDL_Test/including.idl +++ b/TAO/tests/IDL_Test/including.idl @@ -43,12 +43,5 @@ union Bog switch (Agog) case Agog3: long bog3; }; -// #included by reopened modules.idl along with -// same module in included.idl. -module Aok -{ - struct pug {short leash;}; -}; - #endif /* IDL_TEST_INCLUDING_IDL */ diff --git a/TAO/tests/IDL_Test/reopened_modules.idl b/TAO/tests/IDL_Test/reopened_modules.idl index 87a6f61ac74..b0a27db9c42 100644 --- a/TAO/tests/IDL_Test/reopened_modules.idl +++ b/TAO/tests/IDL_Test/reopened_modules.idl @@ -19,12 +19,8 @@ // // ============================================================================ -#include "including.idl" -#include "included.idl" - // These examples test the lookup abilities of the -// TAO IDL compiler, with reopened and/or #included -// modules. +// TAO IDL compiler, with reopened modules. module A { @@ -122,10 +118,3 @@ module com }; }; -// Uses members of a reopened module #included from -// included.idl and including.idl -interface gather -{ - void op (in Aok::Seq1Type inarg, - inout Aok::pug inoutarg); -}; |