summaryrefslogtreecommitdiff
path: root/ACE/TAO/TAO_IDL/be_include/be_enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/TAO_IDL/be_include/be_enum.h')
-rw-r--r--ACE/TAO/TAO_IDL/be_include/be_enum.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/ACE/TAO/TAO_IDL/be_include/be_enum.h b/ACE/TAO/TAO_IDL/be_include/be_enum.h
new file mode 100644
index 00000000000..0e551833e96
--- /dev/null
+++ b/ACE/TAO/TAO_IDL/be_include/be_enum.h
@@ -0,0 +1,61 @@
+/* -*- c++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// be_enum.h
+//
+// = DESCRIPTION
+// Extension of class AST_Enum that provides additional means for C++
+// mapping.
+//
+// = AUTHOR
+// Copyright 1994-1995 by Sun Microsystems, Inc.
+// and
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef BE_ENUM_H
+#define BE_ENUM_H
+
+#include "be_scope.h"
+#include "be_type.h"
+#include "ast_enum.h"
+
+class be_visitor;
+
+class be_enum : public virtual AST_Enum,
+ public virtual be_scope,
+ public virtual be_type
+{
+public:
+ be_enum (void);
+ // Default constructor.
+
+ be_enum (UTL_ScopedName *n,
+ bool local,
+ bool abstract);
+ // Constructor.
+
+ virtual void gen_ostream_operator (TAO_OutStream *os,
+ bool use_underscore);
+ // Overridden from class be_type.
+
+ virtual void destroy (void);
+ // Cleanup method.
+
+ // Visiting.
+ virtual int accept (be_visitor *visitor);
+
+ // Narrowing.
+
+ DEF_NARROW_FROM_DECL (be_enum);
+ DEF_NARROW_FROM_SCOPE (be_enum);
+};
+
+#endif