summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h b/trunk/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h
new file mode 100644
index 00000000000..84dc944af6e
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h
@@ -0,0 +1,38 @@
+//=============================================================================
+/**
+* @file amh_rh_ss.h
+*
+* $Id$
+*
+* Creates code for AMH-RH operations.
+*
+* @author Darrell Brunsch <brunsch@cs.wustl.edu>
+*/
+//=============================================================================
+
+#ifndef AMH_RH_OPERATION_SS_H
+#define AMH_RH_OPERATION_SS_H
+
+/**
+ * @class be_visitor_operation_amh_rh_ss
+ *
+ * @brief This is a concrete visitor to generate the server source for
+ * AMH operations
+ */
+
+#include "be_visitor_operation.h"
+
+class be_visitor_amh_rh_operation_ss : public be_visitor_operation
+{
+ public:
+ be_visitor_amh_rh_operation_ss (be_visitor_context *ctx);
+
+ ~be_visitor_amh_rh_operation_ss (void);
+
+ int visit_operation (be_operation *node);
+
+ private:
+ int marshal_params (be_operation *node);
+};
+
+#endif /* AMH_RH_OPERATION_SS_H */