summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_enum_val.h
diff options
context:
space:
mode:
authorgokhale <asgokhale@users.noreply.github.com>1997-05-16 21:21:06 +0000
committergokhale <asgokhale@users.noreply.github.com>1997-05-16 21:21:06 +0000
commit870d3223447e775c53c57323610d3493fe41e5fb (patch)
tree8d361039c5d764e4e54e439312dc22c029e5ab13 /TAO/TAO_IDL/be_include/be_enum_val.h
parent1f2aefae4e6eefd8bfeae6f6f342d39dc1338d94 (diff)
downloadATCD-870d3223447e775c53c57323610d3493fe41e5fb.tar.gz
TAO IDL Compiler: Backend header files for IDL to C++ mapping for TAO
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_enum_val.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_enum_val.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_enum_val.h b/TAO/TAO_IDL/be_include/be_enum_val.h
new file mode 100644
index 00000000000..533c422e287
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_enum_val.h
@@ -0,0 +1,18 @@
+#if !defined(BE_ENUM_VAL_H)
+#define BE_ENUM_VAL_H
+
+/*
+ * BE_EnumVal
+ */
+class be_enum_val : public virtual AST_EnumVal {
+public:
+ // Operations
+ be_enum_val();
+ be_enum_val(unsigned long v, UTL_ScopedName *n, UTL_StrList *p);
+
+ // Narrowing
+ DEF_NARROW_METHODS1(be_enum_val, AST_EnumVal);
+ DEF_NARROW_FROM_DECL(be_enum_val);
+};
+
+#endif