summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_union_branch
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1998-06-18 13:03:02 +0000
committergokhale <asgokhale@users.noreply.github.com>1998-06-18 13:03:02 +0000
commitd390c2dd3ece730c4aa679260914f77c138fed6a (patch)
tree5ca8c196f359f7d4abd86490a5d7fd83e5e36330 /TAO/TAO_IDL/be_include/be_visitor_union_branch
parentaaecbedb1d5fda5b558ec9da329df7c138862726 (diff)
downloadATCD-d390c2dd3ece730c4aa679260914f77c138fed6a.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_union_branch')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h82
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h49
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h82
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h81
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h69
5 files changed, 363 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h
new file mode 100644
index 00000000000..5037fb586ea
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h
@@ -0,0 +1,82 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// private_ch.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code for private part of the union class for the union
+// members in the client header.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#if !defined (_BE_VISITOR_UNION_BRANCH_PRIVATE_CH_H_)
+#define _BE_VISITOR_UNION_BRANCH_PRIVATE_CH_H_
+
+class be_visitor_union_branch_private_ch : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_union_branch_private_ch
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for the be_union_branch node for the client
+ // header. This generates the code for the private section of the "union"
+ // class
+ //
+public:
+ be_visitor_union_branch_private_ch (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_union_branch_private_ch (void);
+ // destructor
+
+ virtual int visit_union_branch (be_union_branch *node);
+ // visit the union_branch node
+
+ // =visit operations on all possible data types that a union_branch can be
+
+ virtual int visit_array (be_array *node);
+ // visit array type
+
+ virtual int visit_enum (be_enum *node);
+ // visit enum type
+
+ virtual int visit_interface (be_interface *node);
+ // visit interface type
+
+ virtual int visit_interface_fwd (be_interface_fwd *node);
+ // visit interface forward type
+
+ virtual int visit_predefined_type (be_predefined_type *node);
+ // visit predefined type
+
+ virtual int visit_sequence (be_sequence *node);
+ // visit sequence type
+
+ virtual int visit_string (be_string *node);
+ // visit string type
+
+ virtual int visit_structure (be_structure *node);
+ // visit structure type
+
+ virtual int visit_typedef (be_typedef *node);
+ // visit typedefed type
+
+ virtual int visit_union (be_union *node);
+ // visit union type
+
+};
+
+#endif /* _BE_VISITOR_UNION_BRANCH_PRIVATE_CH_H_ */
diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h
new file mode 100644
index 00000000000..71d2dd7cc3b
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h
@@ -0,0 +1,49 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// public_assign_cs.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code for the assignment operator of the union class
+// for the union members in the client stubs.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#if !defined (_BE_VISITOR_UNION_BRANCH_PUBLIC_ASSIGN_CS_H_)
+#define _BE_VISITOR_UNION_BRANCH_PUBLIC_ASSIGN_CS_H_
+
+class be_visitor_union_branch_public_assign_cs : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_union_branch_public_assign_cs
+ //
+ // = DESCRIPTION
+ // This is used to generate the body of the assignment operator and the
+ // copy constructor of the union class
+ //
+public:
+ be_visitor_union_branch_public_assign_cs (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_union_branch_public_assign_cs (void);
+ // destructor
+
+ virtual int visit_union_branch (be_union_branch *node);
+ // visit the union_branch node
+
+};
+
+#endif /* _BE_VISITOR_UNION_BRANCH_PUBLIC_ASSIGN_CS_H_ */
diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h
new file mode 100644
index 00000000000..43387f44cfa
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h
@@ -0,0 +1,82 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// public_ch.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code for public part of the union class for the union
+// members in the client header.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#if !defined (_BE_VISITOR_UNION_BRANCH_PUBLIC_CH_H_)
+#define _BE_VISITOR_UNION_BRANCH_PUBLIC_CH_H_
+
+class be_visitor_union_branch_public_ch : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_union_branch_public_ch
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor for the be_union_branch node for the client
+ // header. This generates the code for the public section of the "union"
+ // class
+ //
+public:
+ be_visitor_union_branch_public_ch (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_union_branch_public_ch (void);
+ // destructor
+
+ virtual int visit_union_branch (be_union_branch *node);
+ // visit the union_branch node
+
+ // =visit operations on all possible data types that a union_branch can be
+
+ virtual int visit_array (be_array *node);
+ // visit array type
+
+ virtual int visit_enum (be_enum *node);
+ // visit enum type
+
+ virtual int visit_interface (be_interface *node);
+ // visit interface type
+
+ virtual int visit_interface_fwd (be_interface_fwd *node);
+ // visit interface forward type
+
+ virtual int visit_predefined_type (be_predefined_type *node);
+ // visit predefined type
+
+ virtual int visit_sequence (be_sequence *node);
+ // visit sequence type
+
+ virtual int visit_string (be_string *node);
+ // visit string type
+
+ virtual int visit_structure (be_structure *node);
+ // visit structure type
+
+ virtual int visit_typedef (be_typedef *node);
+ // visit typedefed type
+
+ virtual int visit_union (be_union *node);
+ // visit union type
+
+};
+
+#endif /* _BE_VISITOR_UNION_BRANCH_PUBLIC_CH_H_ */
diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h
new file mode 100644
index 00000000000..7462bdfe3de
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h
@@ -0,0 +1,81 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// public_ci.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code for public part of the union class for the union
+// members in the client inline.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#if !defined (_BE_VISITOR_UNION_BRANCI_PUBLIC_CI_H_)
+#define _BE_VISITOR_UNION_BRANCI_PUBLIC_CI_H_
+
+class be_visitor_union_branch_public_ci : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_union_branch_public_ci
+ //
+ // = DESCRIPTION
+ // This visitor is used to generate the accessors for the members of the
+ // union
+ //
+public:
+ be_visitor_union_branch_public_ci (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_union_branch_public_ci (void);
+ // destructor
+
+ virtual int visit_union_branch (be_union_branch *node);
+ // visit the union_branch node
+
+ // =visit operations on all possible data types that a union_branch can be
+
+ virtual int visit_array (be_array *node);
+ // visit array type
+
+ virtual int visit_enum (be_enum *node);
+ // visit enum type
+
+ virtual int visit_interface (be_interface *node);
+ // visit interface type
+
+ virtual int visit_interface_fwd (be_interface_fwd *node);
+ // visit interface forward type
+
+ virtual int visit_predefined_type (be_predefined_type *node);
+ // visit predefined type
+
+ virtual int visit_sequence (be_sequence *node);
+ // visit sequence type
+
+ virtual int visit_string (be_string *node);
+ // visit string type
+
+ virtual int visit_structure (be_structure *node);
+ // visit structure type
+
+ virtual int visit_typedef (be_typedef *node);
+ // visit typedefed type
+
+ virtual int visit_union (be_union *node);
+ // visit union type
+
+};
+
+#endif /* _BE_VISITOR_UNION_BRANCI_PUBLIC_CI_H_ */
diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h
new file mode 100644
index 00000000000..f727b019644
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h
@@ -0,0 +1,69 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// public_cs.h
+//
+// = DESCRIPTION
+// Visitor for the Union class.
+// This one generates code for public part of the union class for the union
+// members in the client stubs.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#if !defined (_BE_VISITOR_UNION_BRANCS_PUBLIC_CS_H_)
+#define _BE_VISITOR_UNION_BRANCS_PUBLIC_CS_H_
+
+class be_visitor_union_branch_public_cs : public be_visitor_decl
+{
+ //
+ // = TITLE
+ // be_visitor_union_branch_public_cs
+ //
+ // = DESCRIPTION
+ // This visitor is used to generate implementation such as typecodes for
+ // constructed types
+ //
+public:
+ be_visitor_union_branch_public_cs (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_union_branch_public_cs (void);
+ // destructor
+
+ virtual int visit_union_branch (be_union_branch *node);
+ // visit the union_branch node
+
+ // =visit operations on all possible data types that a union_branch can be
+
+ virtual int visit_array (be_array *node);
+ // visit array type
+
+ virtual int visit_enum (be_enum *node);
+ // visit enum type
+
+ virtual int visit_sequence (be_sequence *node);
+ // visit sequence type
+
+ virtual int visit_string (be_string *node);
+ // visit string type
+
+ virtual int visit_structure (be_structure *node);
+ // visit structure type
+
+ virtual int visit_union (be_union *node);
+ // visit union type
+
+};
+
+#endif /* _BE_VISITOR_UNION_BRANCS_PUBLIC_CS_H_ */