summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-12-07 17:52:12 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-12-07 17:52:12 +0000
commit4abc035fd9bc0f22cf9e12f72d1b8b4b015dd452 (patch)
tree8b3c16bd2e8b3eaffddac0066099d32bafb40ed4
parent96654e80044ce886731aa4d3bc6f5a036dc36c36 (diff)
downloadATCD-4abc035fd9bc0f22cf9e12f72d1b8b4b015dd452.tar.gz
Mon Dec 7 17:51:59 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog10
-rw-r--r--TAO/TAO_IDL/be/be_visitor_component/servant_svs.cpp4
2 files changed, 12 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 7040ecf4433..3734185d69a 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,11 +1,17 @@
+Mon Dec 7 17:51:59 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * TAO_IDL/be/be_visitor_component/servant_svs.cpp:
+
+ filled in connection logic.
+
Sat Dec 5 05:35:27 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/be/be_provides.cpp:
* TAO_IDL/be/be_visitor_component/servant_svh.cpp:
* TAO_IDL/be/be_visitor_component/servant_svs.cpp:
- Codegen modifications for local facets.
-
+ Codegen modifications for local facets.
+
Wed Dec 2 00:45:54 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/be/be_visitor_ccm_pre_proc.cpp:
diff --git a/TAO/TAO_IDL/be/be_visitor_component/servant_svs.cpp b/TAO/TAO_IDL/be/be_visitor_component/servant_svs.cpp
index af8737d6aa7..593eb5c47ff 100644
--- a/TAO/TAO_IDL/be/be_visitor_component/servant_svs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_component/servant_svs.cpp
@@ -1320,6 +1320,10 @@ be_visitor_connect_block::visit_uses (be_uses *node)
if (node->uses_type ()->is_local ())
{
// @@todo: placeholder for connection logic
+ os_ << "/// " << (is_multiple ? "Multiplex" : "Simplex")
+ << " connect." << be_nl
+ << (is_multiple ? "return " : "") << "this->context_->connect_"
+ << port_name << " (_ciao_conn.in ());";
}
else
{