summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_union_fwd.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_union_fwd.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_union_fwd.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_union_fwd.h b/trunk/TAO/TAO_IDL/be_include/be_union_fwd.h
new file mode 100644
index 00000000000..1303e345e9d
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_union_fwd.h
@@ -0,0 +1,59 @@
+/* -*- c++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// be_union_fwd.h
+//
+// = DESCRIPTION
+// Extension of class AST_UnionFwd that provides additional
+// means for C++ mapping of a union.
+//
+// = AUTHOR
+// Jeff Parsons
+//
+// ============================================================================
+
+#ifndef BE_UNION_FWD_H
+#define BE_UNION_FWD_H
+
+#include "be_structure_fwd.h"
+#include "ast_union_fwd.h"
+
+class be_visitor;
+
+class be_union_fwd : public virtual AST_UnionFwd,
+ public virtual be_structure_fwd
+{
+ // =TITLE
+ // be_union_fwd
+ //
+ // =DESCRIPTION
+ // Extensions to the AST_UnionFwd class
+public:
+ be_union_fwd (void);
+ // Default constructor.
+
+ be_union_fwd (AST_Union *dummy,
+ UTL_ScopedName *n);
+ // Constructor.
+
+ virtual ~be_union_fwd (void);
+ // Destructor.
+
+ virtual void destroy (void);
+ // Cleanup function.
+
+ // Visiting.
+ virtual int accept (be_visitor* visitor);
+
+ // Narrowing.
+ DEF_NARROW_METHODS2 (be_union_fwd, AST_UnionFwd, be_structure_fwd);
+ DEF_NARROW_FROM_DECL (be_union_fwd);
+};
+
+#endif // if !defined