summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_typecode/enum_typecode.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_typecode/enum_typecode.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_typecode/enum_typecode.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_typecode/enum_typecode.h b/TAO/TAO_IDL/be_include/be_visitor_typecode/enum_typecode.h
new file mode 100644
index 00000000000..1ad57b8aa5c
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_typecode/enum_typecode.h
@@ -0,0 +1,57 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file enum_typecode.h
+ *
+ * $Id$
+ *
+ * Enumeration TypeCode generation visitor.
+ *
+ * @author Ossama Othman <ossama@dre.vanderbilt.edu>
+ */
+//=============================================================================
+
+#ifndef TAO_BE_VISITOR_ENUM_TYPECODE_H
+#define TAO_BE_VISITOR_ENUM_TYPECODE_H
+
+#include "typecode_defn.h"
+
+namespace TAO
+{
+
+ /**
+ * @class be_visitor_enum_typecode
+ *
+ * @brief Enumeration TypeCode generation visitor.
+ *
+ * Enumeration TypeCode generation visitor.
+ */
+ class be_visitor_enum_typecode
+ : public be_visitor_typecode_defn
+ {
+ public:
+
+ /// Constructor.
+ be_visitor_enum_typecode (be_visitor_context * ctx);
+
+ /// Visit an enumeration.
+ /**
+ * @todo The legacy method name "@c visit_enum()" is
+ * redundant since it is obvious from the argument what kind
+ * of TypeCode is being visited. It will be changed once
+ * the rest of the legacy method names and their call sites
+ * are updated accordingly.
+ */
+ virtual int visit_enum (be_enum * node);
+
+ private:
+
+ /// Generate structure field related TypeCode code.
+ int visit_members (be_enum * node);
+
+ };
+
+}
+
+#endif /* TAO_BE_VISITOR_ENUM_TYPECODE_H */