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.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_global.cpp b/TAO/TAO_IDL/be/be_global.cpp
index 994412c6469..f941c87aeef 100644
--- a/TAO/TAO_IDL/be/be_global.cpp
+++ b/TAO/TAO_IDL/be/be_global.cpp
@@ -73,7 +73,8 @@ BE_GlobalData::BE_GlobalData (void)
gen_inline_constants_ (I_FALSE),
lookup_strategy_ (TAO_PERFECT_HASH),
void_type_ (0),
- ccmobject_ (0)
+ ccmobject_ (0),
+ valuetype_seen_ (I_FALSE)
{
}
@@ -891,3 +892,15 @@ BE_GlobalData::ccmobject (be_interface *val)
this->ccmobject_ = val;
}
+idl_bool
+BE_GlobalData::valuetype_seen (void) const
+{
+ return this->valuetype_seen_;
+}
+
+void
+BE_GlobalData::valuetype_seen (idl_bool val)
+{
+ this->valuetype_seen_ = val;
+}
+