summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_enum_val.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_enum_val.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_enum_val.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_enum_val.h b/trunk/TAO/TAO_IDL/be_include/be_enum_val.h
new file mode 100644
index 00000000000..50d10e42068
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_enum_val.h
@@ -0,0 +1,53 @@
+/* -*- c++ -*- */
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// be_enum_val.h
+//
+// = DESCRIPTION
+// Extension of class AST_EnumVal that provides additional means for C++
+// mapping.
+//
+// = AUTHOR
+// Copyright 1994-1995 by Sun Microsystems, Inc.
+// and
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef BE_ENUM_VAL_H
+#define BE_ENUM_VAL_H
+
+#include "be_decl.h"
+#include "ast_enum_val.h"
+
+class be_visitor;
+
+class be_enum_val : public virtual AST_EnumVal,
+ public virtual be_decl
+{
+public:
+ be_enum_val (void);
+ // Default constructor.
+
+ be_enum_val (unsigned long v,
+ UTL_ScopedName *n);
+ // Constructor.
+
+ // Visiting
+ virtual int accept (be_visitor *visitor);
+
+ //Cleanup.
+ virtual void destroy (void);
+
+ // Narrowing
+ DEF_NARROW_METHODS2 (be_enum_val, AST_EnumVal, be_decl);
+ DEF_NARROW_FROM_DECL (be_enum_val);
+};
+
+#endif