summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-16 17:56:50 +0000
committeralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-16 17:56:50 +0000
commitb5818558a65d5301ff1d87bd02a99ccda2a88817 (patch)
tree45483ecd5871713181182648cc471e50ee0d990b
parent3820401734793802972f072262bb4390361acac3 (diff)
downloadATCD-b5818558a65d5301ff1d87bd02a99ccda2a88817.tar.gz
Removed this file.
-rw-r--r--TAO/TAO_IDL/be/be_visitor_operation/operation_ami.cpp93
1 files changed, 0 insertions, 93 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_operation/operation_ami.cpp b/TAO/TAO_IDL/be/be_visitor_operation/operation_ami.cpp
deleted file mode 100644
index b6e33ac7934..00000000000
--- a/TAO/TAO_IDL/be/be_visitor_operation/operation_ami.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-//
-// $Id$
-//
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO IDL
-//
-// = FILENAME
-// operation_ami.cpp
-//
-// = DESCRIPTION
-// Visitor generating AMI stub code for Operation node in the
-// client header.
-//
-// = AUTHOR
-// Alexander Babu Arulanthu <alex@cs.wustl.edu>
-//
-// ============================================================================
-
-#include "idl.h"
-#include "idl_extern.h"
-#include "be.h"
-
-#include "be_visitor_operation.h"
-
-ACE_RCSID(be_visitor_operation, operation_ami, "$Id$")
-
-
-// ******************************************************
-// Visitor for generating AMI stub for "operation" in client header.
-// ******************************************************
-
-be_visitor_operation_ami::be_visitor_operation_ami (be_visitor_context *ctx)
- : be_visitor_operation (ctx)
-{
-}
-
-be_visitor_operation_ami::~be_visitor_operation_ami (void)
-{
-}
-
-int
-be_visitor_operation_ami::visit_operation (be_operation *node)
-{
- TAO_OutStream *os; // output stream
-
- os = this->ctx_->stream ();
- this->ctx_->node (node); // save the node
-
- os->indent (); // start with the current indentation level
-
- // every operation is declared virtual in the client code
- *os << "virtual ";
-
- // STEP I: Return type is void.
- *os << "void ";
-
- // STEP 2: generate the operation name.
-
- // First the sendc prefix.
- *os << "sendc_";
- *os << node->local_name ();
-
- // STEP 3: generate the argument list with the appropriate
- // mapping. For these we grab a visitor that generates the
- // parameter listing.
- be_visitor_context ctx (*this->ctx_);
- ctx.state (TAO_CodeGen::TAO_OPERATION_ARGLIST_AMI);
- be_visitor *visitor = tao_cg->make_visitor (&ctx);
- if (!visitor)
- {
- ACE_ERROR_RETURN ((LM_ERROR,
- "be_visitor_operation_ami::"
- "visit_operation - "
- "Bad visitor to return type\n"),
- -1);
- }
-
- if (node->accept (visitor) == -1)
- {
- delete visitor;
- ACE_ERROR_RETURN ((LM_ERROR,
- "(%N:%l) be_visitor_operation_ami::"
- "visit_operation - "
- "codegen for argument list failed\n"),
- -1);
- }
- delete visitor;
-
- return 0;
-}