summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h')
-rw-r--r--ACE/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/ACE/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h b/ACE/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h
new file mode 100644
index 00000000000..20e055a6a14
--- /dev/null
+++ b/ACE/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h
@@ -0,0 +1,49 @@
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// tie_ss.h
+//
+// = DESCRIPTION
+// Visitor for generating code for IDL operations for the TIE class
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_OPERATION_TIE_SS_H_
+#define _BE_VISITOR_OPERATION_TIE_SS_H_
+
+// ***********************************************************************
+// Operation visitor for operation declaration inside the TIE class
+// ***********************************************************************
+
+class be_visitor_operation_tie_ss : public be_visitor_scope
+{
+ //
+ // = TITLE
+ // be_visitor_operation_tie_ss
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor to generate the operaton inside a TIE class
+ //
+ //
+public:
+ be_visitor_operation_tie_ss (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_operation_tie_ss (void);
+ // destructor
+
+ virtual int visit_operation (be_operation *node);
+ // set the right context and make a visitor
+};
+
+#endif /* _BE_VISITOR_OPERATION_TIE_SS_H_ */