summaryrefslogtreecommitdiff
path: root/modules/TAO/TAO_IDL/be/be_global.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/TAO/TAO_IDL/be/be_global.cpp')
-rw-r--r--modules/TAO/TAO_IDL/be/be_global.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/modules/TAO/TAO_IDL/be/be_global.cpp b/modules/TAO/TAO_IDL/be/be_global.cpp
index cf9999542a1..dde78ddc05f 100644
--- a/modules/TAO/TAO_IDL/be/be_global.cpp
+++ b/modules/TAO/TAO_IDL/be/be_global.cpp
@@ -134,7 +134,8 @@ BE_GlobalData::BE_GlobalData (void)
gen_skel_export_hdr_file_ (false),
gen_svnt_export_hdr_file_ (false),
gen_exec_export_hdr_file_ (false),
- gen_lem_force_all_ (false)
+ gen_lem_force_all_ (false),
+ alt_mapping_ (false)
{
}
@@ -2104,6 +2105,18 @@ BE_GlobalData::gen_lem_force_all (bool val)
this->gen_lem_force_all_ = val;
}
+bool
+BE_GlobalData::alt_mapping (void) const
+{
+ return this->alt_mapping_;
+}
+
+void
+BE_GlobalData::alt_mapping (bool val)
+{
+ this->alt_mapping_ = val;
+}
+
ACE_CString
BE_GlobalData::spawn_options (void)
{