summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h b/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h
new file mode 100644
index 00000000000..284fd66451c
--- /dev/null
+++ b/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h
@@ -0,0 +1,46 @@
+/* -*- C++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// native_ch.h
+//
+// = DESCRIPTION
+// Concrete visitor for Native generating code in the client header.
+//
+// = AUTHOR
+// Johnny Willemsen
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_NATIVE_NATIVE_CH_H_
+#define _BE_VISITOR_NATIVE_NATIVE_CH_H_
+
+class be_visitor_native_ch : public be_visitor_scope
+{
+ //
+ // = TITLE
+ // be_visitor_native_ch
+ //
+ // = DESCRIPTION
+ // This is the base visitor for enum for the header file
+ //
+ //
+public:
+ be_visitor_native_ch (be_visitor_context *ctx);
+ // conenumor
+
+ ~be_visitor_native_ch (void);
+ // deenumor
+
+ virtual int visit_native (be_native *node);
+ // visit native.
+};
+
+#endif /* _BE_VISITOR_NATIVE_NATIVE_CH_H_ */