summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp
diff options
context:
space:
mode:
authorPhil Mesnier <mesnier_p@ociweb.com>2006-04-25 16:31:42 +0000
committerPhil Mesnier <mesnier_p@ociweb.com>2006-04-25 16:31:42 +0000
commit1107d13f7f21b9a65ead7501a98d42c0385dc8f2 (patch)
tree0c20a23d1161f80a07d06cc4fd2cf75254f407f5 /TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp
parentb76d07d6497e867e8fa76461d1db8e65f9eee969 (diff)
downloadATCD-1107d13f7f21b9a65ead7501a98d42c0385dc8f2.tar.gz
ChangeLog tag: Tue Apr 25 15:14:13 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp b/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp
index 1ceb6962140..f8180f146d7 100644
--- a/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp
@@ -204,6 +204,9 @@ be_visitor_valuetype_ch::visit_valuetype (be_valuetype *node)
<< "virtual const char* "
<< "_tao_obv_repository_id (void) const;"
<< be_nl << be_nl
+ << "virtual void "
+ << "_tao_obv_truncatable_repo_ids (Repository_Id_List &) const;"
+ << be_nl << be_nl
<< "static const char* "
<< "_tao_obv_static_repository_id (void);" << be_nl << be_nl;
@@ -304,7 +307,9 @@ be_visitor_valuetype_ch::visit_valuetype (be_valuetype *node)
*os << "::CORBA::Boolean "
<< "_tao_marshal_state (TAO_OutputCDR &) const;" << be_nl
<< "::CORBA::Boolean "
- << "_tao_unmarshal_state (TAO_InputCDR &);"
+ << "_tao_unmarshal_state (TAO_InputCDR &);" << be_nl
+ << "virtual void "
+ << "truncation_hook (void);"
<< be_uidt_nl << be_nl;
*os << "private:" << be_idt_nl;
@@ -320,21 +325,21 @@ be_visitor_valuetype_ch::visit_valuetype (be_valuetype *node)
{
*os << "virtual ::CORBA::Boolean" << be_nl
<< "_tao_marshal__" << node->flat_name ()
- << " (TAO_OutputCDR &) const;"
+ << " (TAO_OutputCDR &, TAO_ChunkInfo &) const;"
<< be_nl << be_nl;
*os << "virtual ::CORBA::Boolean" << be_nl
<< "_tao_unmarshal__" << node->flat_name ()
- << " (TAO_InputCDR &);";
+ << " (TAO_InputCDR &, TAO_ChunkInfo &);";
}
else
{
*os << "virtual ::CORBA::Boolean" << be_nl
<< "_tao_marshal__" << node->flat_name ()
- << " (TAO_OutputCDR &) const = 0;"
+ << " (TAO_OutputCDR &, TAO_ChunkInfo &) const = 0;"
<< be_nl << be_nl;
*os << "virtual ::CORBA::Boolean" << be_nl
<< "_tao_unmarshal__" << node->flat_name ()
- << " (TAO_InputCDR &) = 0;";
+ << " (TAO_InputCDR &, TAO_ChunkInfo &) = 0;";
}
}
}
@@ -534,4 +539,3 @@ be_visitor_valuetype_ch::gen_supported_ops (be_interface *,
return 0;
}
-