summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_global.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_global.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_global.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/TAO/TAO_IDL/be/be_global.cpp b/TAO/TAO_IDL/be/be_global.cpp
index 0385f93b7fc..41e7ae0fbce 100644
--- a/TAO/TAO_IDL/be/be_global.cpp
+++ b/TAO/TAO_IDL/be/be_global.cpp
@@ -84,7 +84,7 @@ BE_GlobalData::BE_GlobalData (void)
opt_tc_ (false),
ami_call_back_ (false),
gen_amh_classes_ (false),
- gen_tie_classes_ (true),
+ gen_tie_classes_ (false),
gen_smart_proxies_ (false),
gen_inline_constants_ (true),
gen_dcps_type_support_ (false),
@@ -1557,6 +1557,11 @@ BE_GlobalData::parse_args (long &i, char **av)
// AMI with Call back.
be_global->ami_call_back (true);
}
+ else if (av[i][2] == 'T')
+ {
+ // Generate tie classes and files
+ be_global->gen_tie_classes (true);
+ }
else if (av[i][2] == 'H')
{
// AMH classes.
@@ -1776,11 +1781,6 @@ BE_GlobalData::parse_args (long &i, char **av)
// no client inline
be_global->gen_client_inline (false);
}
- else
- {
- // suppress generating tie classes and files
- be_global->gen_tie_classes (0);
- }
}
else if (av[i][2] == 'm')
{
@@ -2174,6 +2174,11 @@ BE_GlobalData::usage (void) const
));
ACE_DEBUG ((
LM_DEBUG,
+ ACE_TEXT (" -GT\t\t\tgenerate tie class (and file)")
+ ACE_TEXT (" generation (disabled by default)\n")
+ ));
+ ACE_DEBUG ((
+ LM_DEBUG,
ACE_TEXT (" \t\t\tNo effect if TypeCode generation is suppressed\n")
));
ACE_DEBUG ((
@@ -2274,11 +2279,6 @@ BE_GlobalData::usage (void) const
));
ACE_DEBUG ((
LM_DEBUG,
- ACE_TEXT (" -Sc\t\t\tsuppress tie class (and file)")
- ACE_TEXT (" generation (enabled by default)\n")
- ));
- ACE_DEBUG ((
- LM_DEBUG,
ACE_TEXT (" -Sp\t\t\tsuppress generating Thru POA collocated")
ACE_TEXT (" stubs (enabled by default)\n")
));