diff options
author | msmit <msmit@remedy.nl> | 2010-07-27 11:54:49 +0000 |
---|---|---|
committer | msmit <msmit@remedy.nl> | 2010-07-27 11:54:49 +0000 |
commit | 6c631192d56cafbdc678f6ac8a2d0d11a1ce59cc (patch) | |
tree | f8a291f73d1d63b6430a7a12714bd4e27341bf44 /TAO/examples/CSD_Strategy | |
parent | 266d6a818a6a658646f3050dc74afce27f1d7c01 (diff) | |
download | ATCD-6c631192d56cafbdc678f6ac8a2d0d11a1ce59cc.tar.gz |
Tue Jul 27 11:51:25 UTC 2010 Marcel Smit <msmit@remedy.nl>
* examples/CSD_Strategy/ThreadPool5/Foo.idl:
* examples/Logging/Logger.idl:
* tests/DII_Collocation_Tests/oneway/Test.idl:
Removed anonymous constructs from test IDL and modified
test code accordingly.
Diffstat (limited to 'TAO/examples/CSD_Strategy')
-rw-r--r-- | TAO/examples/CSD_Strategy/ThreadPool5/Foo.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/TAO/examples/CSD_Strategy/ThreadPool5/Foo.idl b/TAO/examples/CSD_Strategy/ThreadPool5/Foo.idl index 7fd7e4d15f3..36b85adcad6 100644 --- a/TAO/examples/CSD_Strategy/ThreadPool5/Foo.idl +++ b/TAO/examples/CSD_Strategy/ThreadPool5/Foo.idl @@ -11,6 +11,7 @@ typedef sequence<char, 32> Bounded_Var_Size; typedef sequence<char> Unbounded_Var_Size; typedef long Fixed_Array[20]; typedef string Var_Array [3]; +typedef string<20> String_20; struct TimeOfDay { short hour; // 0 - 23 @@ -40,12 +41,12 @@ interface Foo oneway void test_unbounded_string_arg(in string message); - oneway void test_bounded_string_arg(in string<20> message); + oneway void test_bounded_string_arg(in String_20 message); oneway void test_fixed_array_arg(in Fixed_Array message); oneway void test_var_array_arg(in Var_Array messages); - + oneway void test_bounded_var_size_arg(in Bounded_Var_Size message); oneway void test_unbounded_var_size_arg(in Unbounded_Var_Size message); |