summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-02-16 07:49:02 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-02-16 07:49:02 +0000
commit98ae19d524d7e7dcba3383a836eb8019efe262a2 (patch)
tree9bfd897ca970154f28a815e1932ee9b2b2245db4
parente900dc3c577fe3040e65024aa8ae7acc3efc22f0 (diff)
downloadATCD-98ae19d524d7e7dcba3383a836eb8019efe262a2.tar.gz
*** empty log message ***
-rw-r--r--TAO/TAO_IDL/be/be_codegen.cpp24
1 files changed, 15 insertions, 9 deletions
diff --git a/TAO/TAO_IDL/be/be_codegen.cpp b/TAO/TAO_IDL/be/be_codegen.cpp
index f8163b8b98b..1a3c22e09eb 100644
--- a/TAO/TAO_IDL/be/be_codegen.cpp
+++ b/TAO/TAO_IDL/be/be_codegen.cpp
@@ -1834,59 +1834,65 @@ void
TAO_CodeGen::gen_skel_arg_file_includes (TAO_OutStream * stream)
{
this->gen_cond_file_include (
- idl_global->decls_seen_masks.basic_arg_seen_,
+ idl_global->basic_arg_seen_,
"tao/PortableServer/Basic_SArguments.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.bd_string_arg_seen_,
+ idl_global->bd_string_arg_seen_,
"tao/PortableServer/BD_String_SArgument_T.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.fixed_array_arg_seen_,
+ idl_global->fixed_array_arg_seen_,
"tao/PortableServer/Fixed_Array_SArgument_T.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.fixed_size_arg_seen_,
+ idl_global->fixed_size_arg_seen_,
"tao/PortableServer/Fixed_Size_SArgument_T.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.object_arg_seen_,
+ idl_global->object_arg_seen_,
"tao/PortableServer/Object_SArgument_T.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.special_basic_arg_seen_,
+ idl_global->special_basic_arg_seen_,
"tao/PortableServer/Special_Basic_SArguments.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.ub_string_arg_seen_,
+ idl_global->ub_string_arg_seen_,
"tao/PortableServer/UB_String_SArguments.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.var_array_arg_seen_,
+ idl_global->var_array_arg_seen_,
"tao/PortableServer/Var_Array_SArgument_T.h",
stream
);
this->gen_cond_file_include (
- idl_global->decls_seen_masks.var_size_arg_seen_,
+ idl_global->var_size_arg_seen_,
"tao/PortableServer/Var_Size_SArgument_T.h",
stream
);
+ this->gen_cond_file_include (
+ idl_global->any_arg_seen_,
+ "tao/PortableServer/Any_SArg_Traits.h",
+ stream
+ );
+
this->gen_standard_include (stream,
"tao/PortableServer/TypeCode_SArg_Traits.h");
this->gen_standard_include (stream,