summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/inv_arglist.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-20 14:32:29 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-20 14:32:29 +0000
commit313d763c57f0116ae8a4d516a339356e20578e19 (patch)
tree2f3d376496d8634487d22da4494ba47b13cedee8 /TAO/TAO_IDL/be_include/be_visitor_operation/inv_arglist.h
parent5cb0ff6546c403f37cca5ec8228c1c4c6b08b300 (diff)
downloadATCD-OS-h_refactor.tar.gz
This commit was manufactured by cvs2svn to create branchOS-h_refactor
'OS-h_refactor'.
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_operation/inv_arglist.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_operation/inv_arglist.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/inv_arglist.h b/TAO/TAO_IDL/be_include/be_visitor_operation/inv_arglist.h
new file mode 100644
index 00000000000..3b1cb7d4db3
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_operation/inv_arglist.h
@@ -0,0 +1,55 @@
+// $Id$
+//
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// inv_arglist.h
+//
+// = DESCRIPTION
+// Visitor for generating signature needed to invoke a given
+// operation.
+//
+// = AUTHOR
+// Angelo Corsaro
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_OPERATION_INV_ARGLIST_H_
+#define _BE_VISITOR_OPERATION_INV_ARGLIST_H_
+
+// ******************************************************************************
+// Operation visitor for argument list - generates parameters in the signature
+// ******************************************************************************
+
+class be_visitor_operation_inv_arglist : public be_visitor_operation
+{
+ //
+ // = TITLE
+ // be_visitor_operaion_inv_arglist
+ //
+ // = DESCRIPTION
+ // This visitor generates the argument list needed to
+ // invoke a given operation. No parentesys are generated
+ // to give the caller code the abity to stick in other
+ // parameter that might be needed.
+ //
+ //
+public:
+ be_visitor_operation_inv_arglist (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_operation_inv_arglist (void);
+ // destructor
+
+ virtual int visit_operation (be_operation *node);
+ // visit the operation
+
+ virtual int visit_argument (be_argument *node);
+ // visit each argument
+
+};
+
+#endif /* _BE_VISITOR_OPERATION_INV_ARGLIST_H_ */