summaryrefslogtreecommitdiff
path: root/trunk/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h')
-rw-r--r--trunk/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/trunk/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h b/trunk/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h
new file mode 100644
index 00000000000..6a48d19eaa1
--- /dev/null
+++ b/trunk/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h
@@ -0,0 +1,48 @@
+/* -*- c++ -*- */
+//
+// $Id$
+//
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO IDL
+//
+// = FILENAME
+// typedef_cs.h
+//
+// = DESCRIPTION
+// Concrete visitor for the Typedef class
+// This provides the code generation for the Typedef class in the client
+// stubs.
+//
+// = AUTHOR
+// Aniruddha Gokhale
+//
+// ============================================================================
+
+#ifndef _BE_VISITOR_TYPEDEF_TYPEDEF_CS_H_
+#define _BE_VISITOR_TYPEDEF_TYPEDEF_CS_H_
+
+class be_visitor_typedef_cs : public be_visitor_typedef
+{
+ //
+ // = TITLE
+ // be_visitor_typedef_cs
+ //
+ // = DESCRIPTION
+ // This is a concrete visitor to generate the server header for typedef
+ //
+ //
+public:
+ be_visitor_typedef_cs (be_visitor_context *ctx);
+ // constructor
+
+ ~be_visitor_typedef_cs (void);
+ // destructor
+
+ virtual int visit_typedef (be_typedef *node);
+ // visit typedef. We provide code for this method in the derived class
+};
+
+#endif /* _BE_VISITOR_TYPEDEF_TYPEDEF_CS_H_*/